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

body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color:#000;
    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 auto;
    z-index: 9998;
    overflow: hidden;
    position: relative;
    background-color:#000000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    background: radial-gradient(circle,#07071a 0%, #020204 40%, #000000 100%);
}

#canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9997;
    user-select: none;
}

.logos {
    width: 350px;
    height: 330px;
    margin: 0 auto;
    position: relative;
}

.logo-arriba {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 0;
    left: calc(50% - 60px);
    background-image: url('../img/midaz.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-izquierda {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 80px;
    left: 5px;
    background-image: url('../img/manifesto.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-derecha {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 80px;
    right: 5px;
    background-image: url('../img/confieso.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-abajo {
    width: 180px;
    height: 180px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 90px);
    background-image: url('../img/cyber.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.texto-logo {
    width: 120px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    position: absolute;
    bottom: -20px;
    left: 0;
    font-family: sans-serif;
    font-size: 12px;
    color: #fff;
}

.texto-logo.alt {
    bottom: -5px;
    width: 180px;
}

.area-clic-logo {
    width: 80px;
    height: 80px;
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    border-radius: 1000px;
    cursor: pointer;
    z-index: 999999999999;
}

.area-clic-logo.alt {
    width: 100px;
    height: 100px;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
}

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

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

.animation-3 {
    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;
    }
}