* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(./images/background_image.jpg);
    color: white;
    background-attachment: fixed ;
    background-repeat: no-repeat;
    background-size: cover;

}

#container {
   
    max-width: 1240px;
    background-color: rgba(0,0,0,0.3);
    height: 1036px;
    margin-top: 30px;
    margin: 30px auto;

}
#title {
    color: white;
    font-size: 3.1rem;
    font-family: "Bowlby One SC";
    letter-spacing: 0.3rem;
    
}
span {
    color: red;
}

#description {
    font-family: 'Sorts Mill Goudy', serif;
}

header{
    text-align: center;
}

#survey-form-container {
    background-color: rgba(0,0,0,0.8);
    width: 500px;
    height: 897px;
    margin: auto;
    padding: 10px 40px;
}

#survey-form{
    max-width: 460px;
    margin: auto;
    font-size: 1.3rem;
    
   
}

#name,#age,#email,#dropdown,#feedback {
    width: 100%;
    padding: 10px;
    margin-top: 10px;

}

.input-box {
    margin-top: 10px;
    
}

#form-button {
    width: 160px;
    height: 45px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;

}
.form-submit {
    width: 160px;
    margin: auto;
    margin-top: 15px;

}
textarea {
    resize: none;
}