/* Footer */
footer {
    background-color: #BF925A;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 1rem;
    max-height: 4rem;
}
#footsponsers {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 1rem;
}
.footsponsor img {
    display: inline-block;
    max-height: 4vh;
    width: 100%; height: auto;
}
#footsewhip {
    font-size: small;
}
#designMC {
    font-size: small ;
    color: rgba(200, 150, 90, 1) ;
}
@media (max-width: 610px) {
    footer {
        padding: 0.25rem;
    }
    #footsewhip, #designMC {
        font-size: xx-small;
    }
    #footsponsers {
        gap: 0;
    }
    .footsponsor img {
        width: 50%;
        height: auto;
    }
}