footer {
    background-color: rgb(170, 30, 30);
    color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

footer p {
    margin: 0;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    line-height: 1.5;
    word-break: break-word;
}

/* ========= CELULAR ========= */

@media (max-width: 600px) {

    footer {
        flex-direction: column;
        padding: 15px;
    }

    footer p {
        font-size: 14px;
        width: 100%;
    }
}

/* ========= TABLET ========= */

@media (min-width: 601px) and (max-width: 1024px) {

    footer {
        flex-direction: column;
    }

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

/* ========= DESKTOP ========= */

@media (min-width: 1025px) {

    footer {
        flex-direction: column;
    }

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