@import url('https://fonts.googleapis.com/css?family=Poppins:200i,400&display=swap');


body {
  font-family: 'Poppins';
  line-height: 1.4;
  background-color: #D7DCDD;
  width: 500px;
  margin: auto; 
}
#title {
      font-size: 50px;
      color: rgb(4, 24, 24);
      text-align: center;
}

#description{
      text-align: center;
      font-size: 20px;
}
form {
  background: rgba(124, 109, 109, 0.2);
  padding: 2.5rem 2.5rem;
  border-radius: 2rem;
  width: 500px;
  margin: auto; 
  position:absolute;
}


.form-inputs {
  display: block; 
  width: 90%;
  height: 2rem;
  padding: 0.25rem 0.75rem;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}



#dropdown {
  display: block; 
  width: 95.5%;
  height: 2rem;
  padding: 0.25rem 0.75rem;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}


.input-headings {
  margin: 0 auto 1.25rem auto;
  padding: 0.25rem;
}


.submit-button {
  width: 95%;
  padding: 0.75rem;
  background: rgb(130, 179, 166) ;
  color: rgb(15, 7, 7);
  border-radius: 7px;
  cursor: pointer;
}

#textarea {
  width: 93%;
}

@media only screen and (max-width: 800px) 
{
  form {
  width: 65%; 
  height: auto;}
}