/* Página */

body {
    cursor: url("/assets/Cursor/Cursor.png"), auto;
    width: 100vw;
    height: 100vh;

    background-color: #FF0049;

    margin: 0px;
}

p {
    color: white;

    font-size: 2.0vh;
    font-family: "Scheherazade New", serif;
    line-height: 30px;
}

.fondo {
    height: 100vh;

    position: fixed;
    z-index: -303;
}

.fondo2 {
    height: 100vh;

    position: fixed;
    z-index: -304;

    animation: fondobuclenubes 60s linear infinite;
}

.contenedortodo {
    display: flex;
    flex-direction: row-reverse;
    justify-content: baseline;

    width: 100vw;
    height: 100vh;

    padding: 0% 20% 0% 0%;
}

.columna {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;

    align-content: center;
    justify-content: center;

    height: 100vh;
    width: 48vh;

    background-color: #000000;
    box-shadow: 7px 0px 12px 0px rgba(0, 0, 0, 0.614);

    padding: 2vh 2vh 2vh 2vh;

    text-align: center;

    overflow-x: hidden;

    animation: brecha 0.8s ease forwards;
    animation-delay: 0.5s;
    transform: scaleX(0%)
}

#bienvenidaintro {
    opacity: 0%;

    animation: fade-up 1s ease-out forwards;
    animation-delay: 1s;
}


.logo {
    width: 46vh;

    opacity: 0%;

    animation: fade-down 1s ease-out forwards;
    animation-delay: 0.8s;
}

#ojitosintro{
    opacity: 0%;
    
    animation: fade-in 1s ease-out forwards;
    animation-delay: 2s;
}

.ojitos {
    width: 100%;
    height: auto;

    animation: ojitosmovimiento 5s ease-in-out infinite;
}

.info1 {
    width: 100%;
    height: auto;

    margin: 10px 0px 0px 0px;
    line-height: 15px;

    overflow: hidden;
}

#botonintro {
    display: flex;
    flex-direction: column;

    width: auto;
    height: auto;

    align-items: center;

    opacity: 0%;

    animation: fade-up 1s ease-out forwards;
    animation-delay: 2s;
}

.boton {
    cursor: url("/assets/Cursor/CursorClick.png"), pointer;
    display: flex;

    align-items: center;
    justify-content: center;

    width: 110px;
    height: 40px;

    background-color: #000000;
    border-radius: 3px 3px 3px 3px;
    color: #ffffff;
    outline: 1px solid #ffffff;

    font-size: 2vh;
    text-align: center;
    text-decoration: none;

    margin: 1vh 0vh 2vh 0vh;
    padding: 1px 1px 1px 1px;
}

.boton:hover {
    transform: scale(1.3);
    box-shadow: 0px 0px 25px rgba(255, 255, 255, 0.678);
}

/* idiomas */

.contidioma {
    display: flex;
    flex-direction: row;

    justify-content: center;

    width: 100%;
    height: 28px;

    gap: 10px;
}

.botonidioma {
    display: none; /* flex cuando lo ponga */
    flex-direction: row;

    align-items: center;
    justify-content: center;

    width: 100px;
    height: 100%;

    border: solid rgba(255, 255, 255, 0.705) 2px;
    background-color: #373737;

    text-decoration: none;

    opacity: 0%;

    animation: fade-up 1s ease-out forwards;
    animation-delay: 2.2s;
}

.idiomaatext {    
    color: white;
    font-size: 2vh;
}

#textodef1 {
    opacity: 0%;

    animation: fade-in 1s ease-out forwards;
    animation-delay: 1.2s;
}

#textodef2 {
    opacity: 0%;

    animation: fade-in 1s ease-out forwards;
    animation-delay: 1.4s;
}

#textodef3 {
    opacity: 0%;

    animation: fade-in 1s ease-out forwards;
    animation-delay: 1.6s;
}

#textodef4 {
    opacity: 0%;

    animation: fade-in 1s ease-out forwards;
    animation-delay: 1.8s;
}

/* adaptar: */

/* Tamaño Tablet */
@media (max-width: 1024px) {
    .contenedortodo {
        justify-content: center;
        padding: 0% 0% 0% 0%;
    }  
}

/* Tamaño Móvil */
@media (max-width: 600px) {
    .contenedortodo {
        justify-content: center;
        padding: 0% 0% 0% 0%;
    }  
    .columna {
        width: 40vh;
    }
    .logo {
        width: 100%;
    }
    .titulo {
        font-size: 2vh;
    }
}

