footer {
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 96px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 8000;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1920px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 0 80px;
    transform: translateY(-8px);
}

.logo-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.logo {
    height: 64px;
    transform: rotate(30deg);
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.menu-links {
    font-family: 'luckiest-guy';
    font-size: 20px;
    padding-bottom: 0;
    color: white;
    text-decoration: none;
}

.menu-links:hover {
    color: rgb(127, 255, 224);
}

@media (max-width: 916px) {
    .footer {
        height: 64px;
    }

    .footer-content {
        padding: 0 40px;
        transform: translateY(-4px);
    }

    .logo {
        height: 48px;
    }

    .menu-links {
        font-size: 18px;
    }
}

@media (max-width: 464px) {
    .footer {
        height: 56px;
    }

    .footer-content {
        padding: 0 16px;
        transform: translateY(0);
    }

    .logo {
        height: 40px;
    }

    .menu-links {
        font-size: 16px;
    }
}

@media (max-width: 384px) {
    .menu {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }
}