h1+p {
  margin-top: 0.5em;
  margin-bottom: 1em;
}

select {
  min-height: 36px;
  font-size: 0.97em;
  padding: 4px 8px;
  margin-bottom: 10px;
}



html {
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: false;
  line-height: 1.65;
  font-size: 18px;
}

p {
  font-size: 1em;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Open Sans', sans-serif;
  font-weight: true;
  line-height: 1.15;
}

h1,
.text-size-h1 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin-top: 0;
  font-size: 1.8em;
}

h2,
.text-size-h2 {
  font-size: 1.6em;
}

h3,
.text-size-h3 {
  font-size: 1.42em;
}

h4,
.text-size-h4 {
  font-size: 1.27em;
}

h5,
.text-size-h5 {
  font-size: 1.13em;
}

.text-caption {
  font-size: 0.89em;
}

small,
.text-small {
  font-size: 0.79em;
}

html {
  background: #9399ab;
  padding: .5rem;
  min-height: 98vh;
}

body {
  max-width: 34rem;
  margin: 1rem auto;
  padding: 2rem;
  color: rgb(34, 34, 34);
  background-color: rgb(245, 245, 245);
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.322) 2px 0 20px;
}

@media only screen and (max-width: 600px) {
  body {
    margin: 0 auto;
    padding: 2rem 1rem;
  }
}

form {
  display: grid;
  grid-template-columns: 40% 60%;
  margin-top: 2rem;
  align-items: center;
  row-gap: 10px;
}

form>*:nth-child(n):nth-last-child(1) {
  grid-column: span 2;
}

label {
  font-size: 1.1rem;
  font-weight: 600;

}

button {
  background-color: rgb(0, 95, 247);
  color: white;
  border-radius: 0.5rem;
  border: none;
  transition-duration: .2s;
  padding: 16px 40px;
  font-size: 1.2em;
  min-width: 180px;
  min-height: 48px;
}

button:hover {
  background-color: rgb(53, 134, 255);
  transition-duration: .5s;
  cursor: pointer
}

button:active {
  background-color: rgb(0, 92, 145);
  transition-duration: .0s;
}

footer {
  font-size: small;
  text-align: center;
}