
.menu-wrapper {
    height: 40px;
    width: 40px;
    padding: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: none;
}
.menu-button {
    height: 40px;
    width: 40px;
    padding: 10px;
    position: relative;
    z-index: 25;
    border: none;
    margin: 0;
    background-color: rgba(255, 255, 255, 0);
    position: fixed;
    transition: .2s;
}
.menu-button:hover {
    transform: scale(1.1);
    cursor: pointer;
}
.menu-button:active {
    transform: scale(.6);
}

.menu-content {
    position: absolute;
    right: -200px;
    top: 0;
    z-index: 20;
    width: 200px;
    display: grid;
    place-items: center;
    text-align: left;
    height: 100vh;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.159) -7px 0px 16px 0px;
    transition: .2s;
    position: fixed;
}

.opacity-layer {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(2*100vh);
    background-color: #001d2c4e;
    z-index: 15;
    opacity: 0;
    transition: .2s;
}

.main-menu {
    font-size: 16px;
}
.main-menu-list li {
    list-style: none;
    transition: .2s;
    margin: 40px 4px;
}
.main-menu-list li:hover {
    background-color: aliceblue;
}

.main-menu li a {
    margin: 4px;
    padding: 12px;
}
.main-menu-list li:hover a{
    color: #007fbd;
    text-decoration: none;
}

.main-menu-list a:hover {
    cursor: pointer;
}


.main-menu-list li a{
    color: #00334e;
    text-decoration: none;
}


#toggle-menu-canvas {
    z-index: 20;
    padding: 0;
    margin: 0;
    border-radius: 4px;
}

@media (max-width: 720px) and (orientation: portrait){
    .menu-wrapper {
        display: block;
    }
}
