*{
    margin:0px;
    padding:0px;
}
header{
    width:100%;
    height:10%;
    background-color:#336699;
    color:#daf7dc;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: cursive;
    font-size: 200%;
    margin-bottom: 4rem;

}
h1{
    padding:1.5%;
    font-family: 'Times New Roman', Times, serif;
}
#form{
    margin:0 auto;
    width:80%;
    height:fit-content;
    border:4px solid #2f4858;
    box-shadow: 0 0 20px #86bbd8;
    background-color: #e2fdff;

}
h3{
    padding:20px 30px 40px 30px;
    padding-left: 2%;
    /* border-left:3px solid #0ccad7; */
    /* box-shadow: -2px 0 8px #6ca8c9; */
    font-size:110%;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    
}
#feedback{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 5%;
}
label{
    font-size: 130%;
    /* padding-left:5%; */
    padding-bottom: 1%;
}
input{
    
    margin-bottom:2%;
    width:50%;
    height:2rem;
    
}
select{
    width:50%;
    margin-bottom:2%;
    height:2rem;
}
textarea{
    width:50%;
    margin-bottom:2%;
}
button{
    width:80%;
    margin-bottom:2%;
    height:3rem;
    background-color: #034078;
    color:#fefcfb;
    text-align: center;
    font-size: 1.5rem;
}
@media (max-width:500px){
    header{
        font-size:100%;
    }
    #form{
        font-size:50%;
    }
    button{
        height:2rem;
        font-size: 1rem;
    }

}

