.menu-home {
    width: 100%;
    mix-blend-mode: difference;
}
.menu-home a {
    opacity: 0;
    animation: fadeInCascade 0.6s ease-out forwards;
}

.menu-home a:nth-child(1) { animation-delay: 0.2s; }
.menu-home a:nth-child(2) { animation-delay: 0.4s; }
.menu-home a:nth-child(3) { animation-delay: 0.6s; }
.menu-home a:nth-child(4) { animation-delay: 0.8s; }
.menu-home a:nth-child(5) { animation-delay: 0.8s; }
.menu-home a:nth-child(6) { animation-delay: 0.8s; }

@keyframes fadeInCascade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInCascade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.menu-home p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    line-height: 28px;
    margin: 0px;
}
.menu-home a {
    border: 0px solid rgb(255, 255, 255);
    width: fit-content;
    height: auto;
    position: relative;
    margin: auto auto 20px;
    display: flex;
    padding-top: 0px;
    border-radius: 0px;
    color: #111;
    background-color: #fff;
}
.menu-home a:hover {
    color: #fff;
    background-color: #111;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-home a:last-of-type {
    margin: auto auto 0px;
}