body {
  background-color: whitesmoke;
  font-family: 'Roboto Slab', serif;
}

header {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  align-items: baseline;
  justify-content: space-around;
  align-items: stretch;
}

#header {
  max-width: 700px;
  opacity: 0.9;
  flex: 1;
  padding: 5px 10px 10px 10px;
  margin: 0px auto -5px auto;
}

.container {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  align-items: baseline;
  font-size: 1rem;
  font-weight: 400;
  color: #212529;
  letter-spacing: 1px;
  line-height: 1.5;
  justify-content: space-around;
  align-items: stretch;
  background-color: #e2e2e2;
}

.form-wrap {
  max-width: 400px;
  max-height: 800px;
  margin: 35px;
  padding: 10px 10px 10px 20px;

  background-color: whitesmoke;
  overflow: auto;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  border-style: none;
  flex: 1;
}

.form-group {
  max-width: 400px;
  margin: 5px auto 0px auto;
  padding: 5px;
  max-width: auto;
  display: block;

  /* display:flex; */
}
label {
  padding: 8px 8px 8px 0px;
  display: block;
}
.input--link {
  flex: 1;
  border-radius: 4px;
  border-style: none;
  padding: 5px;
  display: block;
  width: 350px;
  height: 25px;
  background-color: #e2e2e2;
}

h2 {
  margin: -5px;
  padding: auto 8px 10px auto;
  display: inline-block;
}

p {
  letter-spacing: 1px;
  line-height: 1.2;
  font-size: 0.7rem;
  font-weight: 200;
  display: block;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  color: #961728;
  cursor: pointer;
}
.button {
  display: block;
  --color: whitesmoke;
  background-color: whitesmoke;
  border-radius: 4px;
  border: 2px hidden var(--color);
  color: var(--color);
  background: #961728;
  padding: 10px 20px;
  text-align: center;

  font-family: 'Roboto Slab', serif;
  letter-spacing: 1px;
  line-height: 1.5;
  display: inline;
  font-size: 1rem;
  margin: 15px 6px 6px 0px;
  cursor: pointer;
  transition: 0.5s;
}
.button:hover {
  background-color: var(--color);
  color: #961728;
  border: 1px solid;
}
