.menu-container {
    background-color: rgba(209, 180, 102, 0.95);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s ease-in-out;
}

.hide-menu-container {
    z-index: 0;
    visibility: hidden;
    opacity: 0;
}

.menu-options-container {
    width: 50%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.menu-option {
    font-size: 30px;
    font-family: sans-serif;
    text-decoration: none;
    font-weight: bold;
    color: #111;
}

.menu-option::after {
    display: block;
    content: '';
    width: 0%;
    height: 2px;
    background-color: #111;
    transition: .5s ease-in-out;
}

.menu-option:hover::after {
    width: 100%;
}