*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    height: 800px;
    max-width: 1100px;
    background-color: antiquewhite;
    padding: 100px;
}
.box{
    width: 100%;
    height: 100%;
    background-color: rgb(128, 124, 124);
    padding: 20px;
}
h1{
    text-align: center;
}
form {
  text-align: justify;
}
label,input,select,option{
    font-size: large;
    margin-top: 10px;
}
.submitBtn{
    display: flex;
    justify-content: center;
}
.submit-btn{
    background-color: rgb(47, 248, 255);
    text-align: center;
    font-size: x-large;
}
