@media only screen and (max-width: 1200px) {
    .footer {
        background: rgba(29, 29, 29, 0.8);
        display: flex;
        justify-content: center;
        padding: 0 50px;
    }

    footer p {
        font-size: 10px;
        text-align: left;
    }
}

@media only screen and (min-width : 1200px) {
    .footer {
        background: rgba(29, 29, 29, 0.8);
        display: flex;
        justify-content: center;
        padding: 0 50px;
    }

    footer p {
        font-size: 13px;
        text-align: left;
    }
}