/********* COLORES */

/* ORO 1 = #D19245
/* ORO 2 = #DCB350
/* ORO 3 = #F1E69C

/* AZUL 1 = #141654
/* AZUL 2 = #2B398B
/* AZUL 3 = #0080BC

/* NARANJA 1 = #E95A24

/********* BODY */

body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color:#141654;
    background: radial-gradient(circle,#0080BC 0%, #2B398B 50%, #141654 100%);
    position: relative;
}

::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar:vertical {
    display: block;
    width: 8px;
}
  
body::-webkit-scrollbar-track:vertical {
    background: #929292;
}

body::-webkit-scrollbar-thumb:vertical {
    background: #474747;
}

/********* PORTADA */

.portada {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.logo-portada {
    width: 120px;
    height: 120px;
    background-image: url('../img/isotipos/blanco.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 30px;
}

.titulo-portada {
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: #fff;
}

.texto-portada {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-family: "Rubik", sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    color: #DCB350;
}

.animation {
    animation-name: text-focus-in;
    animation-duration: 4s;
    animation-timing-function: linear;
    -webkit-animation-name: text-focus-in;
    -webkit-animation-duration: 4s;
    -webkit-animation-timing-function: linear;
}

@-webkit-keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}