@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;
}

header,
footer {
    flex: 0 1 auto;
}

/* FIN GENERAL */

/* HEADER */
header {
    flex: 1;
    background-color: #e24546;
    min-height: 11vh;
    display: flex;
    justify-content: center;
    margin: auto;
}

.menu{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: auto;
}

header figure{
    width: 3em;
    margin-left: 1em;
    margin-right: 0em;
}

header h1 {
    font-family: 'Arvobold', sans-serif;
    color: white;
    font-size: 1.5em;
    display: flex;
    align-items: baseline;
    margin: auto;
    width: 7em;
}

header h1 span{
    font-family: 'Arvobold', sans-serif;
    color: #1E1E1C;
    font-size: 1.4em;
}

/*FIN HEADER */

/*MAIN*/
main {
    flex: 1;
    background-color: #1E1E1C;
    margin: 0em;
    max-height: 100vh;
}

main figure{
    margin: auto;
    padding-top: 1.5em;
}

main img{
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    margin: auto;
    max-width: 25vw;
}

main figcaption{
    font-family: "Latobold", sans-serif;
    color: white;
    font-size: 1.2em;
    text-align: center;
    padding: 0.5em;
}

main h2{
    font-family: 'Latobold', sans-serif;
    color: black;
    font-size: 1.2em;
    background-color: #CFCECE;
    padding: 0.1em;
    margin: 0.3em auto ;
    text-indent: 1.5em;
}

main h3 {
    font-family: "Latolight", sans-serif;
    color: white;
    font-size: 1em;
    margin: 1.5em 2.8em 0em;
    line-height: 1.2em;
    padding-top: 0.5em;
    padding-bottom: 1.5em;
}

main h4{
    font-family: "Latolight", sans-serif;
    color: white;
    font-size: 1em;
    margin: 0.5em 3em;
    line-height: 3em;
}

main h5{
    font-family: 'Latobold', sans-serif;
    color: black;
    font-size: 1.1em;
    background-color: #CFCECE;
    width: 2.7em;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.8em 0.2em 0.5em 0.1em;
    border-radius: 20%;
    overflow: hidden;
}

.notificaciones{
    display: flex;
    justify-content: flex-start;
}

#botones{
    display: flex;
    justify-content: flex-end;
    margin: auto;
    margin-bottom: 2em;
    margin-right: 2em;
}

.botonopaco{
    background-color: rgb(70, 70, 70);
    font-family: "Latoregular", sans-serif;
}

/* FIN MAIN */


/* RESPONSIVE */
/* a partir de 1000px */
@media screen and (min-width:62em) { 
    main img{
        max-width: 15vw;
    }
    
    main h3{
        max-width: 50vw;
        margin: auto;
    }
        
    #datos{
        max-width: 50vw;
        margin: auto;
    }
    
    main h4{
        margin: 0em;
    }
}