#offcanvas-menu {
    z-index: 3;
    height: 100vh;
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    color: white;
    padding-top: 60px;
    transition: all 0.5s ease;
    background-color: rgba(27, 38, 59, 1);
    display: flex;
    flex-direction: column;
}

#offcanvas-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    z-index: 2;
}

#offcanvas-button {
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: rgb(190, 190, 190);
    border: 2px solid rgb(140, 140, 140);
    padding: 3px;
    transition: 0.1s ease;
    cursor: pointer;
    left: 1vw;
    top: 3vh;
}

#offcanvas-button:active {
    background-color: rgb(140, 140, 140);
}

.offcanvas-line {
    background-color: black;
    height: 3px;
    width: 30px;
}

.offcanvas-link {
    text-decoration: none;
    margin: 10px;
    background-color: white;
    padding: 10px;
    border: 2px solid black;
    border-radius: 5px;
    color:#1bb3e1;
}