textarea {
  font: inherit;

}

form {
  display: grid;
  gap: 1rem;

}

.contact-form {
  display: grid;
  background-color: whitesmoke;
  width: fit-content;
  height: fit-content;
  padding-left: 20px;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 50px;
  border-radius: 25px;
  font-family: Georgia, sans-serif;
  margin: auto;
}

.form-group {
  display: grid;
  gap: 0.5rem;

}

label {
  text-transform: uppercase;
  font-size: 1rem;
}

input {
  border-radius: 15px;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 10px;
  font-size: 15px;
  border: none;
}

.button-temp {
  margin-top: 10px;
  font-family: Georgia, sans-serif;
  background-color: darkgreen;
  color: white;
  font-size: 20px;
  border-radius: 25px;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  height: 50px;
  border: none;

}

button:hover {
  cursor: pointer;
}

.blank {
  height: 100px;
  background-color: white;
}

optgroup {
  font-size: 1.5em;
  padding: 20px;
}

optgroup option {
  border-radius: 40px;
  
}

@media (max-width: 768px) {
  .hero-logo {
    width: 100px;       /* smaller on phones */
    margin-top: 20px;
    left: 15%;
  }
}