footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: white;
    height: auto;
    width: 100%;
    background-color: rgb(44, 15, 1);
    padding: 2rem;
    margin-top: 4rem;
}

footer ul {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    list-style: none;
}

footer li {
    padding: 0.25rem;
}

footer li a {
    margin: 0;
    padding: 0;
    color: white;
    text-decoration: none;
}

/* Tablet (ab 601px) */
@media (min-width: 601px) and (max-width: 1024px) {
    footer {
        height: 15rem;
    }

    footer ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    footer li a {
        font-size: 1.125rem;
        padding: 0.5rem;
    }
}

/* Desktop (ab 1025px) */
@media (min-width: 1025px) {
    footer {
        height: 15rem;
    }

    

    footer ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    footer li a {
        font-size: 1.125rem;
        padding: 0.5rem;
    }
}