.mewsLanding {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 0;
}

.buttonCol {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 15px;
}

.landingBtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.landingBtn a {
    line-height: 0;
    margin: 0;
    padding: 0;
}

.landingBtn img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.landingBtn span {
    margin-top: 0.25rem;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    margin-bottom: 10px;
}

.landingBtn:hover {
    transform: scale(1.15);
}

.landingBtn:hover img {
    animation: wiggle 0.6s ease-in-out infinite;
}

.landingBtn:hover span {
    opacity: 1;
}

@keyframes wiggle {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}

.mewsWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mewsCont {
    position: relative;
    width: 400px;
    height: 400px;
}

.mewsMain {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pupil {
    position: absolute;
    width: 25px;
    height: 25px;
    pointer-events: auto;
    transition: transform 0.05s linear;
}

.pupilL {
    top: 160px;
    left: 125px;
}

.pupilR {
    top: 160px;
    left: 245px;
}

.hidePupils {
    opacity: 0;
}

@media (max-width: 800px) {
    .mewsLanding {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }

    .mewsWrapper {
        order: -1;
        grid-column: 1 / -1;
        border-bottom: 2px solid #fefadf;
    }

    .buttonCol {
        display: contents;
    }

    .landingBtn {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }

    .landingBtn span {
        opacity: 1;
    }
}