.menu-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
    top: -100%;
    z-index: 200;
    background: linear-gradient(to bottom right, rgb(255, 67, 249), rgb(48, 113, 255));
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    opacity: 0;
    transition: 0.25s all ease-in-out 0.25s;
}
.menu-wrapper.active {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 1;
}

.menu-wrapper ul {
    margin: auto;
    list-style: none;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.menu-wrapper ul li {
    padding: 1rem 0;
}
.menu-wrapper ul li button {
    border: 5px solid white;
    border-radius: 50vw;
    text-align: center;
    text-decoration: none;
    width: 25vw;
    height: 6vw;
    color: white;
    background-color: rgba(0,0,0,0);
    font-size: 2rem;
    transition: 0.5s;
    font-family: "Quicksand", sans-serif;
}
.menu-wrapper ul li button:hover {
    background-color: white;
    color: black;
}