*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    /* outline: 1px solid red; */
}

.content{
    width: 100%;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
}

.logo{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left: 40px;
    padding: 5px 0px;
    margin-right: 20px;

}

.logo img{
    margin-right: 2vw;
    width: clamp(80px, 5vw, 120px);
}

.logo h1{
    font-size: clamp(16px, 1.5vw, 24px);
    color: #654445;

    font-weight: 800;
}
nav{
    margin-right: 2vw;
}

nav ul{
    display: flex;
    justify-content: space-between;
    column-gap: clamp(20px, 2vw, 50px);
}

nav ul li{
    list-style: none;
}

nav ul li a{
    color: 320808;
    font-size: clamp(12px, 1.5vw, 24px);
    color: #654445;
    font-weight: 800;
    text-decoration: none;
}
#contact{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
    background-color: #2F2319;
}

#contact h1{
    font-size: 60px;
    margin-bottom: 30px;
}

.item{
    font-size: 20px;
    width: 320px;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#contact-form{
    display: flex;
    column-gap: 50px;
    
}

.all{
    display: flex;
    border-right: 3px solid white;
    align-items: center;
    justify-content: center;
    padding-right: 30px;
}

.all button{
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    border: none;

}

.inputs{
    row-gap: 30px;
    display: flex;
    flex-direction: column;

}

.inputs input,
textarea{
    padding: 10px;
    font-size: 20px;
}

#message{
    align-items: flex-start;
}

#message textarea{
    height: 215px;
}

.cont{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 30px;
    row-gap: 30px;
    
}

.cont p i{
    margin-right: 10px;
}

 input:focus,
 textarea:focus {
    border: none;
    outline: none;
}



@media screen and (max-width: 1680px){
    /* *{outline: 1px solid red;} */

    #contact-form{
        flex-direction: column;
        align-items: center;
    }
    .all{
        flex-direction: column;
        width: 100%;
        padding-right: 0px;
        border-right: 0px;
    }
    textarea{
        width: 100%;
        margin-bottom: 10px;
    }

    .item, .inputs{
        width: 100%;
    }

    #message textarea{
        height: 215px;
    }

    .cont{
        width: 700px;
    }
    label{
        margin-bottom: 2px;
    }
}




@media screen and (max-width: 800px){ 

    #contact-form{
        flex-direction: column;
        align-items: center;
    }
    .all{
        flex-direction: column;
        width: 100%;
        padding-right: 0px;
        border-right: 0px;
    }
    textarea{
        width: 100%;
        margin-bottom: 10px;
    }
    .cont{
        width: 320px;
    }
    label{
        margin-bottom: 2px;
    }
    
   .content{
    width: 100vw;
    overflow-x: hidden;
   }
    #menu{
        display: block;
    }

    header{
        display: none;
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
        
    }

    header .logo img{
        width: 50px;
    }

    nav ul{
        flex-direction: column;
        justify-content: space-around;
        height: 40vh;
        text-align: center;
        margin-bottom: 25vh;
    }

    ul li a{
        font-size: 50px;
        text-align: center;
        padding: 10px;
        width: 60px;
    }

}

#menu{
    display: none;
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 25px;
}