body{
    overflow: hidden;
}
.header{
    height: 5vh;
    width: 100vw;
    display: flex;
    margin-top:10px;
    align-items: flex-start;
}

.header a{
    margin-left:30px;
}

.body-wrapper{
    display: flex;
    width: 100vw;
    height: 90vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.body-wrapper form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15vh;
}

#input-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

::placeholder {
    text-align: center; 
}

input:focus::placeholder {
    color: transparent;
}
input,select{
    padding: 10px 20px;
    border: 1px solid black;
    border-radius: 20px;
    width: 500px;
    box-sizing: border-box;
}

input[type="button"]{
    background-color: rgb(211, 143, 143);
    border: none;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
}

input[type="button"]:hover{
    background-color: rgb(150, 101, 101);
}
h1{
    font-size:5vw;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#Header img{
    width: 150px;
}

.footer{
    display: flex;
    justify-content: flex-end;
    width: 100vw;
    
}

.footer p{
    margin-right: 20px;
}
.footer em{
    font-size: normal;
}

@media (max-width: 768px) {
    input,select {
      width:250px;
    }

    #Header img{
        width: 100px;
    }

    input[type="button"]{
        padding: 15px;
        font-size: 18px;
        font-weight: bold;
    }
    .footer{
        justify-content: center;
    }
    
    .footer p{
        margin-right: 0px;
    }
  }