.side-bar-button {
    position: absolute;

    transform: translate(-50%);
    right: 24px;

    width: 6lvh; height: 6lvh;

    background-color: #363636;
    border-radius: 7px;

    transition: right 0.2s ease;
}
.side-bar-button svg {
    position: absolute;

    transform: translate(-50%, -50%);
    left: 50%; top: 50%;

    width: 5.5lvh; height: 5.5lvh;
    fill: #fff; opacity: 0.75;
}

.side-bar {
    position: fixed;
    opacity: 0;
    width: 0;
    background-color: rgb(27, 27, 27);
    box-shadow: 0px 0px 21px 34px rgba(3, 3, 3, 0.12);
    border-bottom-left-radius: 12px;
    right: 0; top: 0;
    transition: opacity 0.2s ease, width 0.2s ease;
    overflow: hidden;
    user-select: none;

    padding-bottom: 15px;
    z-index: 4;
}

.side-bar h1,
.side-bar h2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Roboto';
    font-size: 30px;
    font-weight: bold;
}

.side-bar h2 {
    height: 2px;
    margin-top: 39px;
}

.side-bar a {
    display: block;
    text-decoration: none;
}

.side-bar span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 21px;
    font-family: 'Roboto';
    font-weight: lighter;
    background-color: rgb(43, 43, 43, 0.7);
    border-radius: 6px;
    width: 100%; 
    height: 30px;
    margin-top: 9px;

    transition-delay: 0.42s;
    transition: background-color 0.3s ease-in-out;
}

.side-bar a:hover span {
    background-color: rgb(43, 43, 43, 1);
}

.side-bar img {
    display: block;
    margin: auto;
    margin-top: 5.4px;

    scale: 1;
    transition: scale 0.34s ease;
}
.side-bar img:hover {
    scale: 1.2;
}