* {
    padding: 0;
    margin: 0;
}

body{
    background-color: #FEF7EB;
    overflow-x: hidden;
}

p{
    font-family: "Azeret Mono", monospace;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 20px;
    letter-spacing: 0.2px;
}

.display-img:hover{
    text-decoration: none;
    cursor: pointer;
}

.divider-line{
    position: relative;
    top:15px;
    background-color: black;
    height: 1px;
    width: 400px;
    margin-bottom: 40px;
}

/* fonts */

.Azeret-Mono{
    font-family: "Azeret Mono", monospace;
}
.Bitter{
    font-family: "Bitter", serif;
}

.Bellota{
    font-family: "Bellota Text", sans-serif;
}

.Coquette{
    font-family: "coquette", sans-serif;
    font-weight: 400;
}

/* colour */

.red{
    color: #e53c29;
}

.brown{
    background-color: #e4dfd8;
}

.light-red{
    background-color: #f58475;
}

.light-yellow{
    background-color: #fffcf6;
}

.black{
    background-color: black;
}

.yellow{
    background-color: #E7BF82;
}

.bright-yellow{
    background-color: #ffbd7b;
}

/* layout */

#header{
    display: flex;
    position: sticky;
    top: 0px;
    background-color: #FEF7EB;
    justify-content: space-between;
    margin: 0;
    width: 100%;
    z-index: 99;
}

.logo{
    display: flex;
    margin-left: 13%;
}

.logo-after{
    display: none;
}

.logo-box{
    height: 120px;
}

.logo-box:hover .logo-after{
    display: block;
}

.logo-box:hover .logo-before{
    display: none;
}

.logo-text{
    font-size: 13px;
    font-weight: 600;
    margin-left: 5px;
}

.logo-text1{
    margin-top: 38px;
    font-weight: 300;
}

.nav-bar{
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    font-weight: 300;

    width: 350px;
    margin-top: 40px;
    margin-right: 10%;
}

.nav-line-top{
    position: absolute;
    background-color: black;
    height: 2px;
    width: 450px;
    top: 26px; right: 6%;
}

.nav-line-bottom{
    position: absolute;
    background-color: black;
    height: 2px;
    width: 515px;
    top: 74px; right: 6%;
}

.nav-item{
    color: black;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
}

.nav-item:hover{
    color: #B0A07E;
}

.nav-button{
    display: none;
}

#items{
    display: none;
}


/*screen responsive*/
@media screen and (max-width: 1200px){
    .nav-line-top{
        width: 430px;
    }
    
    .nav-line-bottom{
        width: 495px;
    }
    
    }

@media screen and (max-width: 900px){
.nav-line-top{
    display: none;
}

.nav-line-bottom{
    display: none;
}

}

@media screen and (max-width: 800px){
    .nav-bar{
        display: none;
    }

    .logo{
        margin-left: 40px;
    }

    .nav-button{
        position: absolute;
        top: 30px;
        right: 40px;
        display: block;
        height: fit-content;
        z-index: 101;
    }

    #nav-button-open{
        display: none;
    }

    #items{
        position: absolute;
        right: 0;
        
        background-color: rgb(123, 96, 96);
        width: 60%;
        height: 5000px;
    }

    .nav-menu{
        list-style-type: none;
        margin-top: 120px;
    }
    
    .menu-item{
        text-decoration: none;
        color: #FEF7EB;
        padding-left: 50px;
        padding-top: 18px;
        padding-bottom: 18px;
        padding-right:300px ;
        line-height: 70px;
        font-size: 30px;
        text-transform: uppercase;
    }

    .menu-item:hover{
        background-color: #FEF7EB;
        color: rgb(123, 96, 96);
    }
}