@charset "utf-8";

*{margin: 0; padding: 0}

@font-face {
    font-family: 'quicksandbold';
    src: url('../fonts/quicksand_bold-webfont.woff2') format('woff2'),
         url('../fonts/quicksand_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'quicksandbook';
    src: url('../fonts/quicksand_book-webfont.woff2') format('woff2'),
         url('../fonts/quicksand_book-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'quicksandlight';
    src: url('../fonts/quicksand_light-webfont.woff2') format('woff2'),
         url('../fonts/quicksand_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


/*---DIVCONTENEDOR---*/

.contenedor {
    width: 960px; 
    margin: 0 auto 0 auto;
    display: flex;
    flex-direction: column;

}


/*---HEADER---*/

.header{
    background-color: aquamarine;
    padding: 20px;
    display: flex;
    align-content: center;
    align-items: center;
}

#logolu{
    margin: auto;
}

/*---MENU---*/

.menulu{
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
     
}

nav ul li{
    list-style: none;
}

nav ul li a{
    background-color: black;
    padding-left: 99px;
    padding-right: 99px;
    box-sizing: border-box;
    font-family: 'quicksandbold';
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    color: white;
    
}

nav ul li a:hover{
    background-color: aquamarine;
    color: black;

}

/*---HOME---*/

.imagen-home{
    margin: auto;
}

.contenido-info{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
}

.caja-gris{
    width: 320px;
    height:190px;
    padding: 20px;
    padding-left: 40px;
    margin-bottom: 20px;
   
}

h2{
    font-family: 'quicksandbold';
    font-weight: normal;
    text-transform: uppercase;
    font-size: 14pt;
}

.texto-informacion{
    font-family: 'quicksandlight';
    font-weight: normal;
    
}

.contenido-aside{
    background-color: aquamarine;
    height: 100px;
    width: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/*---FOOTER---*/

.footer{
    border-top: 4px solid black;
    margin-top: 25px;
}

.footer-contenido{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 20px;
}

.textofooter{
    padding-left: 50px;
}

.texto-footer{
    font-family: 'quicksandbook';
    font-weight: normal;
    color: black;
    font-size: 10pt;
    text-align: left;
}

.imagenfooter{
    padding-left: 50px;
}


/*---RESPONSIVE---*/
  

@media screen and (max-width: 480px){
    
    .contenedor {
        width: 440px; 
        margin: 0 auto 0 auto;
        display: flex;
        flex-direction: column;}
    
    .contenido-foto{
         width: 100%;}
    
    .contenido-foto img{
         width: 100%;} 
            
    .contenido-info{
        display: block;
        flex-direction: column;
        align-content: space-around;
    margin-bottom: 15px;}
    
    
    .footer{
        flex-direction: column;
        align-content: space-around;}
    
    .texto-footer{
        display: none;}
    
    .imagenfooter{
        width: 25%;}
    
    nav ul{
        flex-direction: column;
        width: 100%;}
    
    nav ul li{
        justify-content: center;
        width: 100%;}
    
    nav ul li a{
        text-align: center;
        padding-left: 193px;
        padding-right: 193px;
        width: 100%;}
    
    .contenido-aside{
        margin-top: 25px;}
    
}
    