/***********************************
 * PALETA DE COLORES Y TIPOGRAFIAS *
 **********************************/
:root{
    --azul-oscuro: #0f1949;
    --azul-claro: #033b86;
    --gris: #56575e;
    --amarillo: #ffe708;
    --unbounded: "Unbounded", sans-serif;
    --anek: "Anek Latin", sans-serif;
    --anybody: "Anybody", sans-serif;
}

/*********************
 * ESTILOS GENERALES *
 ********************/
*{
    box-sizing: border-box;
    position: relative;
    margin: 0px;
}
h1, h2, h3, h4, h5, p{
    width: 100%;
}
body{
    margin: 0 auto;
    font-weight: 400;
    background-color: #FFF;
    color: var(--azul-oscuro);
    font-family: var(--anybody);
    -webkit-font-smoothing:antialiased;
    background-color: #000;
    background-size: 100%;
    background-repeat: no-repeat;
}
section{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    padding: 0vw;
    padding-top: 0px;
    padding-bottom: 0px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
/*section > *{
    padding-left: 2%;
    padding-right: 2%;
}*/
h1{
    font-size: 1.4vw;
    font-weight: 900;
    line-height: .9;
    text-align: center;
    font-family: var(--sans);
    padding-top: 2vw;
    padding-bottom: 2vw;
}
h2{
    font-size: 1.4vw;
    font-weight: 900;
    line-height: 1;
}
p{
    font-size: 1.1vw;
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--anek);
}
h3{
    font-size: .9vw;
    font-weight: 700;
}
video{
    height: 100%;
}