<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* REGLAS PARA DISPOSITIVO - MOBILE FIRST */

/* REGLAS FOOTER */

h4{
    color: rgb(255, 255, 255);
   
    
}

h5{
    color: rgb(255, 255, 255);
   
}

footer &gt; p{
    color: rgb(255, 255, 255);
    

}

footer{
    display: block;
    background-color: rgb(245, 125, 149);
    margin: auto;
    padding: 2em;
    line-height: 1.5;
    
}

/* REGLAS GENERALES*/

@charset "utf-8" ;

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* REGLAS BARRA SUPERIOR */


#barrasuperior{
    background-color: rgb(214, 19, 110);
    display: block;
    text-align: center;
}

#barrasuperior ul li{
  display: inline-block;
  padding: 1em
  
}

#barrasuperior ul li a{
    text-decoration: none;
    color: ghostwhite;
}

#barrasuperior ul li :hover{
    color: rgb(245, 125, 149);
    list-style: none;
}



/* REGLAS DE BODY */


header nav ul li{
    margin: 0.5em 0.5em 0.5em 0.5em
}

body{
    background-color: rgb(255, 228, 249);
}
    
h1{
    color: rgb(214, 19, 110);
    font-size: 2.5em;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-style: normal; 
    margin: 1em 0.5em 0.5em 0.5em;
}

h2{
    color: rgb(245, 125, 149);
    text-align: center;
    font-size: 1.8em;
    font-family: Arial, Helvetica, sans-serif;
    font-style: bold;
    list-style: none;
    margin: 1.5em 0 1em 0;
}


h3{
    color: rgb(214, 19, 110);
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    margin: 1em 0 1em 0;
    text-align: center;
}


h3 a{
    color: inherit; 
} 

h3 ul{
    list-style: none;    
}

h3 div nav ul :hover{
    color: rgb(245, 125, 149);
    list-style: none;
}




/* REGLAS DE LOGO */

#logo{
    background-color: rgb(245, 125, 149);
    text-align: center;
    padding: 1.5em;
}


main div nav ul li a{
    text-decoration: none;
}

main nav ul li{
    margin: 0.5em 0 0.5em 0;
}

div img{
    width: 10em;
}


/* Reglas de imagen camila */
figure img{
    width: 30%;
    text-align: center;
    display: block;
    margin: auto;
}


figcaption{
    color: rgb(214, 19, 110);
    text-align: center;
    padding: 0.3em 0.4em 0.3em 0.4em;
    line-height: 1.7em;

}

figcaption &gt; p{
    font-size: 1.4em;
}





/* REGLAS NAVEGACION */

#navegacion ul li a{
    list-style: none;
    text-decoration: none;
    color: white;
    background-color: rgb(214, 19, 110);
    display: block;
    margin: auto;
    text-align: center;
    border-radius: 2ch;
    width: 12em;
    max-width: 12em;
    font-family: sans-serif;
    padding: 0.3em 0.4em 0.3em 0.4em;
}

#navegacion ul li{
    display: block;
}

#navegacion ul li a:hover{
    background-color: rgb(245, 125, 149);
}

#navegacion{ 
    text-align: center;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}



/* REGLAS DISPOSITIVOS DE ESCRITORIO */

/* Escritorio pequeÃ±o / tablet */

@media screen and (min-width: 992px){

    #navegacion ul li{
    display: inline-block;
    }

    #barranavegacion ul li{
        display: inline-block;
        }

    #logo{
        text-align: left;
    
    }
    
    #barrasuperior{
        text-align: right;
    }

    
}

</pre></body></html>