footer {
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    gap: 10px;
}

.copyright-icon {
    background-image: url('../icons/copyright.svg');
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    display: inline-block;
}

.copyright-text {
    font-family: 'Silkscreen';
    color: var(--secondary-text-color);
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    footer {
        padding: 0.75rem;
    }

    .copyright-text {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    footer {
        padding: 0.5rem;
        gap: 6px;
    }

    .copyright-icon {
        width: 14px;
        height: 14px;
        background-size: 14px 14px;
    }

    .copyright-text {
        font-size: 10px;
        text-align: center;
    }
}