body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  font-family: roboto, sans-serif;
  background-color: #F3DCC0;
}

.hero {
  background-image: url("./images/hero-image.jpg");
  height: 450px;
  color: white;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-position: 75% 75%;
}

.hero-text {
  text-align: center;
  font-size: 28px;
}

h1 {
  font-weight: bolder;
}

form {
  border: grey solid 3px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px;
  width: 100%;
  margin: 30px 0;
}

input,
select,
textarea {
  border-radius: 10px;
  padding: 5px;
  border-color: #D9D9D9;
  border-style: none;
}

.form-area {
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.form-section {
  display: flex;
  flex-direction: row;

}

.form-buttons {
  flex-direction: row;
  margin: 10px;
}

h3,
.form-heading {
  font-weight: 600;
  font-size: 16px;
}

.form-heading {
  margin: 5px 0;
}

.special-heading {
  margin-top: 18px;
}

button {
  border-radius: 25px;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  color: white;
  background-color: rgb(23, 89, 39);
}

footer {
  color: white;
  background-color: #D9D9D9;
  background-size: cover;
  width: 100%;
  height: 100px;
  text-align: center;
}

@media screen and (min-width: 668px) {
  form {
    width: 500px
  }
}