footer {
    width: 100vw;
    height: auto;
    background: #222222;
    border-radius: 5px 5px 0px 0px; 
    margin-top: 40px;
}

    .footer-text p {
        color: #FFFFFF;
        text-transform: uppercase;
        justify-content: center;
        align-items: center;
        padding: 10px 0px;
        text-align: center;
        font-weight: 500;
        font-size: 16px;
    }

        .footer-text p a {
            color:#FFFFFF;
            text-decoration: none;
            border: thick hidden #222222;
            border-radius: 5px;
            transition: 0.3s;
        }

        .footer-text p a:hover {
            color:#222222;
            background:#FFFFFF;
        }

 /* DISPOSTIVOS MEDIANOS TIPO TABLETS, NOTEBOOKS, PORTATILES PEQUEÑOS, ETC. */
@media screen and (min-width:769px) and (max-width:1023px){
    footer {
        max-width: 1366px;
        min-height: 80px;
        height: auto;
        line-height: 60px;
        padding-right: 30px;
    }
    
    .footer-text p {
        text-align: right;
    }
}

 /* DISPOSTIVOS GRANDES O ALTA RESOLUCIÓN TIPO MONITOR, TV, ETC */
@media screen and (min-width:1024px){
    footer {
        max-width: 1366px;
        min-height: 80px;
        height: auto;
        line-height: 60px;
    }
    
    .footer-text p {
        width: 50%;
        text-align: right;
    }
}