.desktopnavi {
    /* Define size, location */
    height: 100%;
    width: 120px;
    overflow: visible;
    position: fixed;
    top: 0;
    left: 0;
    /* Background and border styles */
    background-color: rgb(24, 24, 24);
    border-style: solid;
    border-image: linear-gradient(180deg, #1D2266, #BD54F2, #1D2266) 1 round;
    border-width: 0 2px 0 0;
    /* FLEXBOX */
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    z-index: 1;
}

.navilink {
    text-decoration: none;
    color: rgb(240, 240, 240);
    cursor: pointer;
    text-align: center;
}

.navilink > p {
    color: inherit;
    margin-top: 4px;
}

.navilink:hover .navibutton {
    background-color: rgb(100, 100, 100, 0.7);
}

.navibutton {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0, 0);
    border: none;
    font-size: 18px;
    border-radius: 999px;
    width: 75px;
    height: 36px;
    transition: 0.2s;
    color: inherit;
}

.navibutton:hover {
    cursor: pointer;
    background-color: rgb(100, 100, 100, 0.7);
}

.active {
    background-color: #8734b1;
}

.navilink:hover .active {
    background-color: #642c80;
}