

@media (max-device-width: 800px) {
    nav{
        font-family: 'Titillium Web', sans-serif;
        font-size: 1.1rem;
        background-color: var(--nav);
        position: relative;
        z-index: 10;
    }
        nav li:active{
            background-color: var(--navH);
            transition: 0.5s;
        }
        nav a{
            text-decoration: none;
            color: #FFF;
            display: block;
            width: 100%;
            
            padding: 0.7rem 1.5rem;
        }
        nav > ul{
            clip-path: circle(90px at 100% -2%);
            background-color: rgb(150, 9, 9);
            transition: clip-path 0.6s ease-out;
            
            display: block;
            position: fixed;
            width: 100%;
            height: 100vh;
            padding-left: 0;
            padding-top: 4rem;
            margin: 0;
        }
        nav > ul.open{
            clip-path: circle(1100px at 90% -10%);
        }
        nav > ul > li{
            padding: 0.4rem;
            padding-left: 0.5rem;
            font-weight: bold;
            border-bottom: 2px solid rgb(180, 166, 145);
        }

    #burger{
        top: 5px;
        right: 12px;
        height: 45px;
        width: 45px;

        display: flex;
        flex-direction: column;
        justify-content: space-around;
    
        position: fixed;
        cursor: pointer;
        z-index: 10;
    }
    .slice{
        background-color: rgb(20, 23, 24);
        width: 100%;
        height: 4px;
        border-radius: 5%;
        transition: all 0.3s ease-out;
    }

    .crossed .slice:nth-child(1){
        transform: rotate(45deg);
        transform-origin: 0 0;
    }
    .crossed .slice:nth-child(2){
        opacity: 0;
    }
    .crossed .slice:nth-child(3){
        transform: rotate(-45deg);
        transform-origin: 0 100%;
    }

}
