#menu
{
    height: 50px;
    margin-right: 20px;
    transition: 0.8s;
}

#menu:hover
{
    cursor: pointer;
}

#sideNav
{
    border: solid;
    border-radius: 20px;
    background-color: rgb(0, 3, 31);
    width: 0;
    position: fixed;
    top: 10px;
    right: 0;
    z-index: 2147483647;
    overflow-x: hidden;
    transition: width 0.8s ease;
    height: calc(100vh - 20px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    pointer-events: auto;
    will-change: width;
}

#sideNav a
{
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
}

#sideNav a:hover
{
    color: #f1f1f1;
}