.sidebar {
    display: flex;
    flex-direction: column;
    width: 15vw;
    height: 100vh;
    background-color: var(--secondary-background-color);
    position: fixed;
    justify-content: center;
    align-items: center;
}







.sidebar-middle-content {
    display: flex;
    flex-direction: column;
    width: 15vw;
    height: 40%;
    position: fixed;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-background-color);
    gap: 5%;
}

.sidebar-middle-title {
    background-color: var(--secondary-background-color);
    color: white;
    font-size: 1.8vw;
    margin-bottom: 2%;
}

.sidebar-middle-button {
    display: flex;
    width: 80%;
    height: 5vh;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 2px 5px var(--primary-background-color);
    justify-content: center;
    align-items: center;
    text-align: center;

}

.sidebar-middle-button:hover {
    box-shadow: 0 1px 2px var(--brand-primary-color);
    transition: 0.3s;
    transform: scale(1.03);
    font-size: 100%;
}








.sidebar-bottom-content {
    display: flex;
    width: 100%;
    height: 30vh;
    justify-self: flex-end;
    margin-top: auto;
    background-color: var(--secondary-background-color);
}

.sidebar-logo {
    width: 40%;
    height: fit-content;
    margin-top: auto;
    background-color: var(--secondary-background-color);
}

.sidebar-bottom-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 10%;
    color: white;
    background-color: var(--secondary-background-color);
}

.side-bar-bottom-link {
    cursor: pointer;
    text-decoration: underline;
    font-size: 1vw;
    margin-top: 5%;
    transition: 0.15s;
    background-color: var(--secondary-background-color);
}

.side-bar-bottom-link:hover {
    color: var(--brand-primary-color);
    transition: 0.15s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}



@media only screen and (max-width: 600px) {
    .sidebar-middle-content {
        position: relative;
        margin-top: 10vh;
        width: 70vw;
        gap: 10%;
    }

    .sidebar {
        width: 70vw;
        display: none;
    }

    .sidebar-logo {
        display: none;
    }

    .sidebar-middle-button {
        height: 5vh;
    }

    .sidebar-bottom-content {
        display: flex;
        width: 70vw;
        flex-direction: column;
        justify-content: center;
    }

    .sidebar-middle-title {
        font-size: 5vw;
    }

    .side-bar-bottom-link {
        font-size: 2vw;;
    }
}