@media (max-width: 576px) {
    .button-wrapper {
        display: none;
    }

    .hamburger-wrapper {
        display: block;
        float: right;
    }

    .sidebar-section {        
        background-color: red;
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        text-align: center;
        font-size: 100px;
        color: white;
        /* width: 100px; */
        z-index: 1;
    }
}