@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');


:root {

    color-scheme: light dark;
    color: rgba(255, 255, 255, 0.87);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;

    --c_0: #1ca4ff;
    --c_1: #ec658d;
    --c_2: #33c8ac;
    --c_3: #91af0b;
    /* --c_0: #000000;
    --c_1: #000000;
    --c_2: #000000;
    --c_3: #000000; */
    --i_0: #e35b00;
    --i_1: #139a72;
    --i_2: #cc3753;
    --i_3: #6e50f4;
    --c: #ffffff;
    --typo: #00000030;
    --light0: #ffea2c;
    --light1: #b6b6b6;
    --light2: #aeaeae;
    --light3: #adadad;
    --s_0: #e35b00;
    --s_1: #139a72;
    --s_2: #cc3753;
    --s_3: #6e50f4;
    --col: #6d6d6d;
}

body {
    overflow-x: hidden;
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    background-color: var(--c);
    font-family: 'IBM Plex Sans', sans-serif;

    scrollbar-width: none;
}

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

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


#loader {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0%;
}

#back {
    position: absolute;
    width: 100%;
    height: 1000%;
    margin: 0%;
    background-color: rgb(255, 255, 255);
    mix-blend-mode: difference;
    backdrop-filter: blur(5px);
}

#back i {
    margin-top: 10px;
    margin-left: 50px;
}

#spinner {
    position: relative;
    top: 50%;
    left: 50%;
    width: 5%;
    animation: spin 1s linear infinite;
    background-color: rgb(255, 255, 255);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.spinner i {
    margin-top: 10px;
    margin-left: 50px;
}

#logo-captcha {
    position: fixed;
    width: fit-content;
    height: fit-content;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50vw;
    top: 12vh;
}

#captcha {
    width: 200px;
    height: fit-content;
}

.cls-1 {
    fill: var(--col);
}

.cls-1:hover {
    fill: #0018d1;
}

.titulo_activo {
    position: fixed;
    display: flex;
    margin: 0%;
    top: 50vh;
    left: 50vw;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    color: #ff002b;
    width: max-content;

    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 8vw;
    line-height: 1;
}

.titulo_proyecto {
    position: fixed;
    display: flex;
    margin: 0%;
    top: 50vh;
    left: 50vw;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    color: var(--c_0);
    /* opacity:0%; */
    width: max-content;

    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 8vw;
    line-height: 1;
    animation: inicio 5s linear 1;
}

@keyframes inicio {
    0% {
        opacity:0%;
    }
    100% {
        opacity:100%;

    }
}



.captcha_titulo {
    margin: 0;
    position: absolute;
    /* top: 50%;
    left: 50%; */
}

#deslice{
    position: absolute;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50vw;
    top: 87vh;
    background: transparent;
    text-align: center;
    font-size: 3rem;
    color: var(--i_0);
}

.container {
    position: fixed;
    display: flex;
    align-items: start;
    width: 100vw;
    height: fit-content;
    z-index: 1;
    color: #ffffff;
    background: linear-gradient(-45deg, var(--i_0), var(--i_1), var(--i_2), var(--i_3));
    background-size: 400% 400%;
    animation: gradient 30s linear infinite;

    /* writing-mode: vertical-lr; */
    /* transform: scale(-1); */
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container>p {
    text-overflow: clip;
    white-space: nowrap;
    padding: 0.5vw;
    margin: 0%;
    animation: marquee 60s linear infinite;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9em;
    font-weight: 500;
}

@keyframes marquee {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-160vw);
    }
}

.formas {
    position: absolute;
    width: 30vw;
}

.formas>video {
    display: block;
    width: 100vw;
}

#form0 {
    padding-top: 15vh;
    padding-left: 15vw;
    width: 70vw;
}

.contenido {
    position: absolute;
    top: 100vh;
    width: 100vw;
    height: 625vh;
    animation: aparicion 0.2s linear 1;
    background: linear-gradient(180deg, rgba(255,255,255,1) 3%, rgba(255,168,126,1) 100%);
}

#contenido0 {
    color: var(--i_0);
}

#contenido1 {
    color: var(--i_1);
}

#contenido2 {
    color: var(--i_2);
}

#contenido3 {
    color: var(--i_3);
}

@keyframes aparicion {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}

.artist_name {
    position: absolute;
    display: block;
    touch-action: none;
    flex-direction: column;

    width: max-content;
    height: fit-content;
    padding: 1vw;

    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    color: inherit;

    border: none;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    /* safari */
    -webkit-backdrop-filter: blur(5px);
    /* Firefox */
    -moz-backdrop-filter: blur(5px);
}

.artist_name>p {
    width: fit-content;
    margin: 0%;
}

.rastro_name {
    position: absolute;
    display: block;
    touch-action: none;
    flex-direction: column;
    width: max-content;
    height: fit-content;
    padding: 1vw;

    top: 5vh;
    left: 16vw;

    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    color: inherit;


    border-radius: 10px;
    background-color: transparent;
    backdrop-filter: blur(5px);
    /* safari */
    -webkit-backdrop-filter: blur(5px);
    /* Firefox */
    -moz-backdrop-filter: blur(5px);
}

.rastro_name>p {
    width: fit-content;
    margin: 0%;
}

.info_proyect {
    position: absolute;
    display: flex;
    flex-direction: column;
    touch-action: none;
    width: 40vw;
    height: fit-content;
    padding: 1vw;
    margin: 0%;

    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    color: #343434;


    /* background-color: #ffb5844c; */
    border-radius: 10px;
    backdrop-filter: blur(5px);
    /* safari */
    -webkit-backdrop-filter: blur(5px);
    /* Firefox */
    -moz-backdrop-filter: blur(5px);
}

.details {
    position: relative;
    padding-top: 1vw;
    width: 250px;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1;
    color: inherit;
}

.details>summary {
    cursor: zoom-in;
}

details[open]>summary {
    cursor: zoom-out;
}

.details>p {
    font-size: 0.7rem;
    font-weight: 400;
}

@keyframes aparicion2 {
    0% {
        top: 100vh;
    }

    100% {
        opacity: 50vh;
    }
}

@keyframes desaparicion {
    0% {
        top: 50vh;
    }

    100% {
        top: 100vh;
    }
}

video {
    width: 18vw;
}

iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.fotos{
    position: absolute;
    display: block;
    touch-action: none;
    width: 18vw;

    top: 40vh;
    left: 5vw;

    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);    
}

.fotos:hover {
    -webkit-filter: none;
    /* Safari 6.0 - 9.0 */
    filter: none;
    color: transparent;
}

/* ------------------------------------------------------ Posición de elementos */
#artist0 {
    top: 0vh;
    left: 5vw;
}

#rastro0 {
    top: 0vh;
    left: 30vw;
}

#info0 {
    top: 0vh;
    left: 55vw;
}
#info1 {
    top: 40vh;
    left: 15vw;
}
/* png entrada protocolo */
#png1{
    align-self: center;
    width: 40%;
}

#info2 {
    top: 210vh;
    left: 10vw;
    width: 80vw;
}
#info3 {
    top: 340vh;
    left: 10vw;
    width: 80vw;
}
#info4 {
    top: 430vh;
    left: 10vw;
}
#info5 {
    top: 530vh;
    left: 10vw;
    width: 80vw;
}
/* ------------------------------------------------------ Posición imágenes */
#img0 {
    top: 60vh;
    left: 75vw;
}
#img1 {
    top: 80vh;
    left: 60vw;
}
#img2 {
    top: 450vh;
    left: 50vw;
}
#img3 {
    top: 430vh;
    left: 75vw;
    width: 10vw;
}
#img4 {
    top: 445vh;
    left: 80vw;
    width: 10vw;

}
#img5 {
    top: 455vh;
    left: 67vw;
    width: 10vw;
}
#img6 {
    top: 470vh;
    left: 67vw;
    width: 14vw;
}
#img7 {
    top: 470vh;
    left: 43vw;
    width: 14vw;
}
#img8 {
    top: 485vh;
    left: 30vw;
    width: 14vw;
}
#img9 {
    top: 485vh;
    left: 10vw;
    width: 14vw;
}
#img10 {
    top: 485vh;
    left: 80vw;
    width: 14vw;
}
#img11 {
    top: 505vh;
    left: 72vw;
    width: 10vw;
}
#img12 {
    top: 500vh;
    left: 50vw;
    width: 15vw;
}


/* ------------------------------------------------------ footer */
footer {
    position: fixed;
    display: grid;
    grid-template-columns: 52.5vw 20vw 1fr;
    justify-content: space-between;
    align-items: center;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 7vh;
    font-family: 'IBM Plex Sans', sans-serif;

}

footer>div {
    display: grid;
    grid-template-columns: min-content min-content min-content;
    gap: 5em;
    font-size: 0.9em;
    font-weight: 500;
    padding-right: 1%;
    padding-left: 2vw;
    padding-right: 1.8vw;
}

footer>p {
    width: 100%;
}

footer>div>a,
footer>div>a:visited{
    text-align: right;
    text-decoration: none;
    color:var(--col);
}

a:hover {
    color: #0018d1;
}

#impressum {
    display: flex;
    flex-direction: row;
    justify-content: right;
}

#logo_ext {
    width: 45%;
    fill: var(--col);
}

#logo_ext:hover {
    fill: #0018d1;
}

/* mobile //////////////////////////////////////////////////////////////////////////////////////////*/

@media screen and (max-width: 600px) {

    body {
        overflow: auto;
        scrollbar-width: none;
    }

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

    .formas {
        position: relative;
        width: 100vw;
        height: 100vh;

    }

    video {
        width: 100vw;
    }


    .formas>video {
        display: relative;
        height: 100vh;
    }

    #form0 {
        padding-top: 0vh;
        padding-left: 0vw;
        width: 100vw;
    }

    .container {
        display: none;
    }

    #deslice {
        position: absolute;
        display: block;
        color: #505050;
        top: 83vh;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);

        font-family: 'IBM Plex Sans', sans-serif;
        text-transform: uppercase;
        font-size: 5vh;
        font-weight: 600;

        animation: deslice 3s linear infinite;

    }

    @keyframes deslice {
        0% {
            opacity: 0%;
        }

        50% {
            opacity: 100%;
        }

        100% {
            opacity: 0%;
        }
    }

    .contenido {
        position: relative;
        display: flex;
        touch-action: auto;
        flex-direction: column;
        gap: 5vh;
        width: 100vw;
        top: 0vh;
        height: fit-content;
        overflow-x: hidden;
        overflow-y: auto;
        padding-top: 3vh;
        padding-bottom: 15vh;
        color: var(--i_0);

    }

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

    .artist_name {
        position: relative;
        display: flex;
        flex-direction: row;
        gap: 3vw;
        touch-action: auto;
        width: 98%;

        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        line-height: 1.2;
        color: inherit;
        padding: 2vw 2vw 2vw 4vw;
        margin: 0%;

        mix-blend-mode: normal;
        backdrop-filter: none;
    }

    .artist_name p {
        width: 45vw;
    }

    .rastro_name {
        position: relative;
        display: flex;
        flex-direction: row;
        gap: 3vw;
        touch-action: auto;
        width: 98%;

        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        line-height: 1.2;
        color: inherit;
        padding: 2vw 2vw 2vw 4vw;
        margin: 0%;

        mix-blend-mode: normal;
        backdrop-filter: none;
    }

    .rastro_name p {
        width: 45vw;
    }

    .info_proyect {
        position: relative;
        touch-action: auto;

        width: 92%;

        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 0.9rem;
        font-weight: 400;
        margin: 0%;
        padding: 0vh 4vw 2vh 4vw;
        color: inherit;
        mix-blend-mode: normal;
        backdrop-filter: none;
    }

    .fotos {
        position: relative;
        touch-action: auto;
        width: 100vw;
        margin: 0% 0% 0% 0%;
        border-radius: 0px;

        -webkit-filter: none;
        /* Safari 6.0 - 9.0 */
        filter: none;
        backdrop-filter: none;
    }

    footer {
        position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 7vh;
        padding-top: 3vh;
        background-color: transparent;
    }


    .details {
        position: relative;
        padding-top: 0vw;
        font-size: 0.8rem;
        font-weight: 700;
        line-height: 1.2;
        color: inherit;
    }

    .details>summary {
        cursor: zoom-in;
    }

    details[open]>summary {
        cursor: zoom-out;
    }

    .details>p {
        font-size: 0.7rem;
        font-weight: 400;
    }


    #artist0,#rastro0 {
        top: 0vh;
        left: 5vw;
    }
    /* ------------------------------------------------------ Posición imágenes mobile */
    #rastro0,   
    #info0,
    #info1,    /* png entrada protocolo */
    #png1,   
    #info2,
    #info3,
    #info4,
    #info5,   
    #img0,
    #img1,    
    #img2,
    #img3, 
    #img4, 
    #img5, 
    #img6,    
    #img7,
    #img8, 
    #img9,
    #img10, 
    #img11,    
    #img12{
        top: 0%;
        left: 0%;
        width: 90vw;
    } 

    #png1{
        width: 50%;
    }

    #img0,
    #img1,    
    #img2,
    #img3, 
    #img4, 
    #img5, 
    #img6,    
    #img7,
    #img8, 
    #img9,
    #img10, 
    #img11,    
    #img12{
        width: 100vw;
    }


    footer>div {
        display: inline-block;
        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 0.8rem;
    }

    footer :first-child {
        display: flex;
        flex-direction: center;
        justify-content: space-evenly;
        gap: 4rem;
        padding: 0vh 0vw 2vh 0vw;
    }

    footer>div>a,
    footer>div>a:visited{
    padding: 0%;
}

    #date {
        display: none;
    }

    #impressum {
        display: none;
    }

}