:root{
    --color-1: #0f1016;
    --text-color: #f0f0f0;
    --accent-color: #ff9f21;
}
*{
    margin: 0;
    padding: 0;
}
html{
    font-size: 12pt;
    font-family: Poppins, 'Segoe UI', Tahoma, sans-serif;
}
nav{
    height: 60px;
    background-color: var(--color-1);
    display: flex;
    justify-content: flex-end;
    align-items:  center;
}
.links-container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
nav a{
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}
nav a:hover{
    background-color: var(--accent-color);
}
nav .home-link {
    margin-right: auto;
    font-size: 16pt;
    font-weight: 500;
    white-space: nowrap;
    
}
nav svg{
    fill: var(--text-color);
}
#sidebar-active{
    display: none;
}
.open-sidebar-button, .close-sidebar-button{
    display: none;
}
@media(max-width: 600px){
    .links-container{
        display: none;
        flex-direction: column;
        align-items: flex-start;
        
        justify-content: flex-start;

        position: fixed;
        top: 0;
        right: 0;
        z-index: 10;
        width: 300px;

        background-color: var(--color-1);
        box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);

    }
    nav .links-container a{
        box-sizing: border-box;
        height: auto;
        width: 100%;
        padding: 20px 30px;
    }
    .open-sidebar-button, .close-sidebar-button{
        display: block;
        padding: 20px;
    }
    #sidebar-active:checked ~ .links-container{
        display: flex;
    }
}