@charset "utf-8";

/*TIPOGRAFÍAS */
@font-face {
    font-family: 'arvobold';
    src: url('arvo-bold-webfont.eot');
    src: url('arvo-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('arvo-bold-webfont.woff2') format('woff2'),
         url('arvo-bold-webfont.woff') format('woff'),
         url('arvo-bold-webfont.ttf') format('truetype'),
         url('arvo-bold-webfont.svg#arvobold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'latobold';
    src: url('lato-bold-webfont.eot');
    src: url('lato-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('lato-bold-webfont.woff2') format('woff2'),
         url('lato-bold-webfont.woff') format('woff'),
         url('lato-bold-webfont.ttf') format('truetype'),
         url('lato-bold-webfont.svg#latobold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'latolight';
    src: url('lato-light-webfont.eot');
    src: url('lato-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('lato-light-webfont.woff2') format('woff2'),
         url('lato-light-webfont.woff') format('woff'),
         url('lato-light-webfont.ttf') format('truetype'),
         url('lato-light-webfont.svg#latolight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'latoregular';
    src: url('lato-regular-webfont.eot');
    src: url('lato-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('lato-regular-webfont.woff2') format('woff2'),
         url('lato-regular-webfont.woff') format('woff'),
         url('lato-regular-webfont.ttf') format('truetype'),
         url('lato-regular-webfont.svg#latoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* FIN TIPOGRAFÍAS */

/* GENERAL */
* {
    margin: 0em;
    padding: 0em;
    box-sizing: border-box;
    list-style: none;
}

body {
    margin: auto;
}

#contenedor{
    margin: auto;
    max-width: 100vw;
}

header,
footer{
    flex: 0 1 auto;
}

html {
    background-image: url(../imagenes/fotofondo.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    max-width: auto;
}

/* FIN GENERAL */

/* HEADER */
header {
    background-color: #e24546;
    align-content: center;
    flex: 1;
    height: auto;
    margin: 0em;
}

#in{
    background-color: #e24546;
    height: auto;
    margin: auto;
    padding: 1em 0;
    display: flex;
    justify-content: center;
}

#in ul li a{
    text-decoration: none;
}

#in a {
    font-family: "Arvobold", sans-serif;
    font-size: 1.5em;
    color: white;
}

#in a span{
    font-family: "Arvobold", sans-serif;
    font-size: 1.5em;
    color: #222222;
}
/* FIN HEADER*/

/*MAIN*/
main img{
    border-radius: 50%;
    overflow: hidden;
    display: block;
    justify-content: center;
    margin: auto;
    margin-top: 5.5em;
    max-width: 26vw;
}
    
main h1{
    font-family: "Latobold", sans-serif;
    font-size: 2.2em;
    color: white;
    text-align: center;
    margin: auto;
    margin-top: 0.5em;
    margin-bottom: 0.3em;
    max-width: 90vw;
}

main h4{
    font-family: "Latolight", sans-serif;
    color: white;
    text-align: center;
}

main h2{
    font-family: 'Latobold', sans-serif;
    font-size: 1.2em;
    color: white;
    text-align: center;
    margin: auto;
    margin-top: 4em;
    max-width: 15em;
    margin-bottom: 5.5em;
}

/*FIN MAIN*/

/*FOOTER*/

footer {
    background-color: #DF3130;
    bottom: 0;
    position: absolute;
    height: 3.5em;
    width: 100vw;
    display: flex;
    justify-content: center;
}

footer nav ul {
    padding: 0.8em;
}

footer nav ul li {
    list-style: none;
}

footer ul li a {
    font-family: "Latobold", sans-serif;
    color: white;
    font-size: 1.5em;
    text-decoration: none;
    padding: 0.3em 6em;
}

/* FIN FOOTER */



/* RESPONSIVE */
/* a partir de 1000px */
@media screen and (min-width:62em) { 
    main h1{
        font-size: 2.5em;
    }
    
    main h4{
        font-size: 1.1em;
    }
    
    main h2{
        max-width: 28em;
        font-size: 1.3em;
    }
    
    footer{
        background-color: rgba(30, 30, 28, 0);
    }
    
    footer nav ul{
        background-color: #DF3130;
        margin-top: 0em;
        margin-bottom: 3em;
    }
}