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

header{
    background-color: #722F37;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul{
    display: flex;
    gap: 35px;
}

li{
    list-style: none; 
}

a{
    color:#EFDFBB;
    font-size: 46px;
    font-style: bold;
    text-decoration: none;
}

main{
    background-color: #EFDFBB;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;    

        
}

form{
    
    border-radius: 30px;
    background: #722F37;

    width: 1200px;
    height: 911px;
    padding:100px;

    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-bottom: 130px;

    
}

h1{
    margin-top: 50px;
    margin-bottom: 108px;

    color: #722F37;
    font-size: 64px;
    font-weight: 700;

}


label{
    color: #EFDFBB;
    font-size: 36px;
    font-weight: 600;
}

input{
    width: 527px;
    height: 70px;
    border-radius: 10px;
    background: #D7D7D7;
    border-style: none;
    padding: 10px;
    
}

#input-message{
    width: 993px;
    height: 192px;
    border-radius: 10px;
    background: #D7D7D7;
    border-style: none;
    padding: 10px;
}

button{
    width: 439px;
    height: 90px;
    border-radius: 20px;
    border-style: none;
    background: #EFDFBB;
    color: #722F37;

    cursor: pointer;
    
    font-size: 36px;
    font-weight: 500;
      
}

.store-img{
    border-radius: 15px;
    margin-bottom: 100px;
}


footer{
    background-color: #722F37;
    height: 490px;
    display: flex;
    padding: 90px 70px;
    gap: 60px;
}

footer h2{
    font-size: 40px;
    font-weight: 600;
    color: #EFDFBB;

    margin-bottom: 40px;
}

footer p{
    color: #EFDFBB;
    font-size: 26px;
    font-weight: 400;
}

.footer-left{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}

.footer-right{
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 4px;
}

.footer-right ul{
    display: flex;
    flex-direction: column;
    width: 564px;
}

.footer-right a{
    color: #EFDFBB;
    font-size: 30px;
    font-weight: 700;
}

.footer-right li{
   display: flex;
   flex-direction: row;
   align-items: center;
}

footer img{
    width: 43px;
    height: 43px;
}





