html {
  background: linear-gradient(35deg, #D3FCB6, #DFB6FC);
  height: 100vw;
}
main {
  border-style: solid;
  border-radius: 15px;
  border-width: 3px;
  border-color: #c1c1c1;
  padding: 20px 10vw 30px 10vw;
  width: 20em;
  margin: auto;
  background: linear-gradient(90deg, #e8e8e8, #FFFFFF);
  animation-name: fade-in;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0, 0.5, 0.8, 0.9, 1)
}

@keyframes fade-in {
  0% {
    opacity: 0;
    position: relative;
    top: 100px;
  }
  100% {
    position: relative;
    top: 0px;
  }
}
#title {
  font-size: 35px;
  padding: 30px;
  margin: auto;
  text-align: center;
}
#description {
  font-size: 20px;
  width: 30em;
  position: relative;
  right: 35px;
}
#survey-form {
  margin-left: -70px;
  margin-right: -80px;
}
input {
  margin-left: 100px;
  margin-bottom: 15px;
}
#email {
  position: relative;
  right: 52px;
}
#number {
  position: relative;
  left: 12px;
  width: 153px;
}
#dropdown {
  position: relative;
  left: 147px;
  width: 157px;
  margin: 10px 0px 10px 0px;
}
#html, #javascript, #python, #C {
  margin: 10px 0px 15px 26px;
}
#textarea{
  height: 100px;
  width: 450px;
  margin-top: 10px;
}
#submit {
  height: 40px;
  width: 100px;
  font-size: 20px;
}
#yes, #no {
  margin: 10px 0px 15px 26px;
}
