@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;
    max-width: 100vw;
}

#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 */
h1 {
    font-family: 'Arvobold', sans-serif;
    color: white;
    font-size: 3.5em;  
    text-align: center;
    margin-top: 0.5em;
}

h1 span{
    font-family: 'Arvobold', sans-serif;
    color: #DF3130;
    font-size: 1.3em;
}

h2 {
    font-family: "Latoregular", sans-serif;
    color: white;
    font-size: 1.3em;
    text-align: center;
    width: 13em;
    margin: auto;
    margin-top: 2em;
    display: flex;
    justify-content: center;
    line-height: 1.3em;
}

main form{
    margin: auto;
    text-align: center;
}

form label{
    font-family: "Latobold", sans-serif;
    font-size: 1.1em;
    color: white;
    display: flex;
    justify-content: flex-start;
    margin: auto;
    margin-top: 1.6em;
    max-width: 16em;
}

form input{
    background-color: rgba(255, 255, 255, 0);
    border-bottom-color: white;
    border-bottom-style: solid;
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    width: 18em;
    height: 1.5em;
    vertical-align: text-bottom;
    font-family: "Latoregular", sans-serif;
    color: white;
    font-size: 1em;
    margin: auto;
    outline: none;
}

main nav {
    display: flex;
    justify-content: center;
    margin-top: 1.5em;
}

main nav ul li {
    text-align: center;
    line-height: 2em;
    min-width: 18em;
}

main nav ul li{
    margin: 0.5em 0em;
    list-style: none;
    background-color: #CFCECE;
}

main ul li a {
    font-family: 'Latobold', sans-serif;
    color: black;
    font-size: 1em;
    text-decoration: none;
}

main nav ul li a {
    display: block;
}

main nav ul li a:hover{
    background-color: #DF3130;
}

main a:hover {
    color: white;
}

/*FIN MAIN*/


/* RESPONSIVE */

/* a partir de 1000px */
@media screen and (min-width:62em) { 
    main h2{
        width: 25em;
    }
    
    form label{
        max-width: 20em;
    } 
    
    form input{
        width: 22em;
    }
    
    main nav ul li {
    min-width: 22em;
}

}