#banner {
    
    margin-top: 50px;
    position: relative;
    
}

#banner img {
    
    width: 100%;
    height: 100%;
    
}

#banner .contenedor {
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    
     /*Color de TEXTO de BANNER*/
    color: #000;
    
}
/*TAMAÑO H2 */

#banner h2 {
    
    font-size: 28px;
  
    text-emphasis-color: color #333;
    
}

 /*Color de CUADRO del ENLACE */

#banner a {
    
    display: block;
    width: 100px;
    text-decoration: none;
    padding: 7px;
    margin-top: 10px;
     /*ICOLORES*/
    color: #000;
    border: 3px solid #000;
    
}

/*Color al tocar CUADRO */
#banner a:hover {
    
    background: rgba(51,51,51,0.5);
    
}

/*MOVIL*/

@media (min-width:480px) {
    #banner h2 {
        font-size: 40px;
    }
    #banner a{
        margin-top: 25px;
    }
}

/*TABLET*/
@media (min-width:768px) {
    #banner {
        height: -300px;
        overflow: hidden;
    }
    #banner img {
        height: auto;
       
    }
}

/*PORTATIL*/
@media (min-width:1024px) {
    #banner img {
        height: -200;
    }
}
    