/* footer.css - placeholder for footer styles */
.footer {
    background: var(--footer-bg-color);
}
footer.main {
    background: var(--footer-bg-color);
    border-top: 1px solid #111;
    box-shadow: none !important;
    font-weight: bolder;
    font-size: smaller;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

footer.main > small:first-of-type {
    justify-self: start;
}

footer.main > nav.footer {
    justify-self: center;
}

footer.main > small:last-of-type {
    justify-self: end;
}

nav.footer ul {
    display: flex;
    justify-content: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}


@media (max-width: 900px) {
    footer.main {
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-left: 12px;
        padding-right: 12px;
    }

    footer.main > small:first-of-type,
    footer.main > nav.footer,
    footer.main > small:last-of-type {
        justify-self: auto;
    }

    nav.footer ul {
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    footer.main {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.footer.graphics {
    border-top: 1px solid var(--primary-color);
    background-color: var(--footer-bg-color);
    background-image: url(https://game-art.dev/assets/img/logo-1024.png);  
    background-blend-mode: overlay;
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    width: 100%;
}
