.menu {
    position: absolute;
    transform: translate(-100%);
    z-index: 101;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100svw;
    height: 100svh;
    background-color: rgba(0, 0, 0, 0);
    z-index: 100;
}

.menu {
    animation: slideIn 0.3s ease-in-out forwards;
}

@keyframes slideIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}