:root{
    --color-1: #03030350;
    --color-2: #ffffffc5;
    --text-color: #c0c0c0;
}
*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #1d1d1d;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}
html{
    font-size: 10pt;
    font-family: Montserrat;
}

/* CSS-MOBILE */
nav{
    height: 60px;
    background-color: var(--color-1);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
img{
    height: 35px;
    width: 43px;
}
.links-container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
nav a{
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: .3s;
}
.links-boxmenu{
    display: none;
}
.links-menu{
    display: flex;
    align-items: center;
    margin: auto;
}
nav a:hover{
    color: #fff;
}
nav .logo-link{
    margin-right: auto;
}
nav svg{
    fill: var(--text-color)
}
#sidebar-active{
    display: none;
}
.open-sidebar-button, .close-sidebar-button{
    display: none;
}
.logo{
    display: none;
}
@media(max-width: 980px){
    .open-icon{
        fill: #fff;
    }
    .close-icon{
        fill: #6b6b6b;
    }
    .logo-media{
        margin-right: auto;
        padding: 10px;
    }
    .logo{
        padding: 0;
        display: flex;
    }
    .links-container{
        flex-direction: column;
        align-items: flex-start;

        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10;
        width: 100%;

        background-color: #ffffffd0;
        box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
        transition: 0.6s ease-out;
    }
    .logo-link{
        display: none;
    }
    .links-boxmenu{
        display: flex;
        flex-direction: column;
    }
    .links-menu{
        display: none;
    }
    nav a{
        color: #000;
        box-sizing: border-box;
        height: auto;
        width: 300%;
        padding: 20px 30px;
        justify-content: flex-start;
        font-size: 15px;
    }
    nav a:hover{
        color: #ffffff;
    }
    .open-sidebar-button, .close-sidebar-button{
        padding: 20px;
        display: block;
    }
    #sidebar-active:checked ~ .links-container{
        right: 0;
    }
    #sidebar-active:checked ~ #overlay{
        background: #ffffff00;
        backdrop-filter: blur(2px);
        transition: 0.2s ease-out;
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
    }
}
#verticle-line{
    width: 300%;
    height: 1px;
    background-color: #8a8a8a;
}