body {
  background-color: #735290;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  color: white;
}
main {
  width: 50%;
  margin: 0 auto;
}
#title-container{
  margin: 50px 0 50px 0;
}
#title {
  text-align: center;
  font-size: 50px;
}
#description {
  text-align: center;
}
fieldset {
  background-color: #363457;
}
legend {
  background-color: #465C69;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid white; 
}
#name, #email, #number, #dropdown {
  width: 100%;
  height: 30px;
  border-radius: 10px;
  border: 2px;
  padding: 3px;
}
input, select, textarea {
  margin: 5px 0 5px 0;
}
.input-container {
  margin: 20px 0 20px 0;
}
.smaller-label {
  font-size: 16px;
}
textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  font-size: 16px;
}
#submit {
  background-color: #37af65;
  border: 0px solid white;
  border-radius: 10px;
  width: 100%;
  min-height: 40px;
  font-size: 20px;
  color: white;
  box-shadow: 0 0 5px #37af65;
  cursor: pointer;
}
#submit:hover {
  box-shadow: 0 0 10px #37af65;
  transition: 0.5s;
}
@media (max-width:800px) {
  main {
    width: 90%;
  }
}
