@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sorts+Mill+Goudy:ital@1&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-image: url(./background_image.jpg);
    color: white;
    background-attachment: fixed;
}

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

#title{
    font-size: 3.1rem;
    color: white;
    font-family: 'Bowlby One SC', cursive;
}
span{
    color: #ff0000;
}
#descriptions{
    font-family: 'Sorts Mill Goudy', serif;
    color: white;
}
#header{
    text-align: center;
}
textarea{
    resize: none;
}
#survey-from-container{
    width: 500px;
    background-color: rgba(0, 0, 0, 0.8);
    margin: auto;
    padding: 30px 40px;

}
#name,
#age,
#dropdown,
#feedback,
#email{
    width: 100%;
}
.input-box{
    margin-top: 10px;

}
#form-button{
    width: 160px;
    height: 45px;
    background-color: #f00;
    border-radius: 50px;
    color: white;
    border: none;
    /* cursor: pointer; */
}
.form-submit{
    margin: auto;
    width: 160px;
    margin-top: 15px;
}
