#mySidenav {
    height: 100%;
    width: 0;
    position: absolute;
    z-index: 1;
    background-color: #ffffffe8;
    overflow: auto;
    transition: 0.5s;
    text-transform: uppercase;
    flex-direction: column;
    flex-wrap: wrap;
    display: flex;
}

.identity-content {
    font-family: "Monsterrat", sans-serif;
}

#navbar_open_btn {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    margin-left: 1.5rem;
    padding-top: 1rem;
}

#navbar_close_btn {
    font-size: 30px;
    cursor: pointer;
    margin-left: 1.5rem;
    padding-top: 1rem;
    /* color: white !important; */
    margin-bottom: 1rem;
}
/* width */
#mySidenav::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
#mySidenav::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
#mySidenav::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
#mySidenav::-webkit-scrollbar-thumb:hover {
    background: #555;
}
