#sidebar-button-wrapper {
    display: none;
    z-index: 1;
}

.nav-item:hover {
    color: blue;
}

.post-link:hover {
    color: blue;
}

@media (max-width: 576px) {

    #sidebar-button-wrapper {
        display: flex;
        position: fixed;
        top: 20px;
        right: 10px;
        width: 60px;
        height: 60px;
        /* border: 1px solid #aaa; */
        /* border-radius: 8px; */
        justify-content: center;
        align-items: center;
    }

    #sidebar-button-wrapper:hover {
        transition: 2s;
        color: darkgrey;
    }

    #sidebar-button-wrapper i {
        color: white;
        font-size: 1.5em;
    }

    #sidebar-content-wrapper {
        position: absolute;
        top: 64px;
        right: 3vw;
        font-size: 1.5em;
        z-index: 3;
        background-color: #222;
        padding: 10px;
        transition: 2s linear;
    }

    .sidebar {
        position: fixed;
        width: 100vw;
    }

    .content {
        margin-top: 75px;
    }
}