footer {
    border-top: 1px solid oklch(12.9% 0.042 264.695 / 0.1);
    background-color: oklch(98.4% 0.003 247.858 / 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 100;
    height: 8vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8rem;
    width: 100%;
}

footer>h1 {
    padding: 0;
    margin: 0;
}

ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

ul li {
    font-weight: 500;
    cursor: pointer;
}

a.logo-link {
    display: flex;
    align-items: center;
    width: auto;
}

.logo-link img {
    display: block;
    max-height: 3rem;
    height: auto;
    width: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    footer {
        height: 5vh;
        padding: 0 1rem;
        margin: 0;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        flex-wrap: wrap;
        padding: 0 1rem;
        margin: 0;
    }

    .logo {
        max-height: 60px;
    }

    .logo-link img {
        width: auto;
    }
}