*{
    font-family: 'Inter', sans-serif;
}

a{
    text-decoration: none;
}

ul, li{
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.show-btn{
    align-items: center;
    justify-content: space-between;
    flex-direction: column;

    height: 25px;
    width: 25px;
    /* background-color: red; */
    display: none;
}

.show-btn div{
    width: 100%;
    height: 3px;
    background-color: white;

}


button{
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    display: none;
    text-align: center;
}

button:hover{
    opacity: 0.9;
}
.nav-brand{
    color: var(--white-color);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 2px;
}

.nav-menu{
    background-color: var(--shark-color);
    box-shadow: 0px 10px 7px 0px rgba(56, 56, 56, 0.3);
}


.nav-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #141216;
    padding: 60px;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
}

/* show overlay js */
.show-overlay{
    opacity: 1;
    visibility: visible;
}

.nav-overlay-container{
    background-color: #17151A;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
    position: relative;
}
#menu-hide-btn{
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
    border: 1px solid #dedede1f;
    color: #dedede1f;
}

.nav-links li{
    margin: 40px 0;
    position: relative;
}
.nav-links li::before, .nav-links li::after{
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #ECA05A;
    opacity: 0;
    transition: all 300ms ease-in-out;
}
.nav-links li::before{
    top: -10px;
    left: 0;
}
.nav-links li::after{
    bottom: -10px;
    right: 0;
}
.nav-links li:active::before, .nav-links li:active::after{
    width: 75%;
    opacity: 1;
}
.nav-links li a{
    color: #fafafa;
    text-transform: uppercase;
    font-size: 2.5em;
    letter-spacing: 2px;
    font-weight: 200;
    transition: all 300ms ease-in-out;
}
.nav-links li:active a{
    color: #ECA05A;
}


@media screen and (max-width: 1024px){

    .show-btn{
        display: flex;
    }

    button{
        display: block;
    }
}


@media screen and (max-width: 568px){

    .nav-links li a{font-size: 150%;}

}


