.sidebar {
    height: 100vh;
    width: 17%;
    background-color: #ffffff;
    box-shadow: 1px 1px 5px gray;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: fixed;
}
.wrapper {
    display: flex;
    gap: 20px;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 5vh;
}
.col a {
    font-size: 1.1rem;
    font-weight: 500;
    color: black;
    text-decoration: none;
    width: 35vh;
    height: 5vh;
    text-align: center;
}

@media (max-width: 768px) {
    .col span {
        display: none;
    }
    .sidebar {
        height: 100%;
        position: fixed;
        width: 10%;
    }
    .col a {
        width: min-content;
    }
}