*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
}

section{
    padding-top: 55px;
    padding-bottom: 55px;
}
h2{
    color: #491503;
    text-align: center;
    padding: 40px;
}

/*start header*/
header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    background-color: transparent;
    position: fixed;
    z-index: 999;
}

.container{
    display: flex;
    justify-content: space-between;
    background-color:transparent;
    align-items: center;
    text-decoration: none;
    padding-top: 10px;
}    

ul{
    display: flex;
}
ul li{
    margin-left:18px ;
    list-style: none;
    position: relative;
    font-weight: bold;
    color: #491503;
}
ul li::after{
    content: "";
    background-color: #491503;
    top: 30px;
    left: 0px;
    width: 0;
    height: 5px;
    position: absolute;
}
ul li:hover::after{
    transition: 0.5s;
    width: 100%;
}
ul li:hover{
    cursor: pointer;
    color:#9c916e;
}
a:link{
    text-decoration: none;
}
ul li a{
    text-decoration: none;
    
}

@media (max-width: 1024px){
    header ul{
        flex-direction: column;
    }
}
/*end header*/

/*start chat*/
#conversation{
    width: 65%;
    margin: auto;
    border: gray thin 2px;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
    margin-top: 6%;
}
#conbox{
    margin: 10px;
    padding: 21%;
}
#buttons input{
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
    width: 80%;
    padding: 15px;
    margin-bottom:25px ;
    margin-left: 50px;
    margin-right: 10px;
}
/*end chat*/

/*start footer*/
footer{
    display: flex;
    justify-content: space-between;
    background-color: #f0ebe9;
    color: #491503;
    padding: 18px 120px;
}
.icons {
    padding-top: 50px;
    text-decoration: none;
}
.icons a:hover{
    font-size: 20px;
    font-weight: bolder;
}

@media(max-width:1024px){
   footer{
    padding: 20px;
   } 
}
/*end footer*/