/* footer.css */

footer {
    background-color: #cf1818;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

footer p {
    font-size: 16px;
    color: white;
}

/* Media query footer */
@media (max-width: 600px) {
    footer {
        padding: 15px;
    }

    footer p {
        font-size: 13px;
    }
}
