body::before {
  position: fixed;
  background-size: cover;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
  content: " ";
  margin: 0;
  padding: 0;
  z-index: -1;
  background-image: linear-gradient(
      115deg,
      rgba(58, 58, 158, 0.8),
      rgba(136, 136, 206, 0.7)
    ),
    url("https://cdn.freecodecamp.org/testable-projects-fcc/images/survey-form-background.jpeg");
  top:0;
  left: 0;
}
body {
  background-size: cover;
  min-height: 100vh;
  overflow: scroll;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
}
form{
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 0.2rem;
    margin-top: 2rem;
}
.wrap{
    display: flex;
    flex-direction: column;
    padding: 1rem 0rem;
}
#description{
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}
form{
    background-color: #2b2946;
}
input,textarea,select,button{
    border-radius: 0.2rem;
}
input,textarea,select{
    margin-top: 0.3rem;
}
#name,#email,#number,select{
    height: 30px;
}
input,textarea,select:focus{
    outline: none;
}
label{
    font-size: 1.3rem;
    color: white;
}
.check-wrap div{
    font-size: 1.3rem;
    color: white;
}
h1,p{
    color: white;
}
h1{
    margin-top: 2rem;
}
button{
    height: 50px;
    background-color: greenyellow;
    color: black;
    font-size: 1rem;
}
/***************************************************************/
@media (max-width:870px){
    .container{
        min-width: 500px;
    }
    form{
        width: 400px;
    }
}
@media (max-width:550px){
    h1{
        font-size: 2rem;
        text-align: center;
    }
    p{
        text-align: center;
        font-size: 1rem;
    }
    .container{
        min-width: 300px;
    }
    form{
        width: 200px;
    }
}