: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;
    --i_0: #e35b00;
    --i_1: #139a72;
    --i_2: #cc3753;
    --i_3: #6e50f4;
    --c: #ffffff;
    --typo: #00000030;
}

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

}

header {
    display: flex;
    width: 98vw;
    justify-content: space-between;
    padding: 1vw;
}

header>img {
    width: 100px;
}

.creditos {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 32vw;
    padding-left: 1.5vw;
    bottom: 17vh;


    font-weight: 400;
    font-size: 0.8rem;
    line-height: 1.3;
}

.idartes {
    position: fixed;
    display: flex;
    align-items: center;
    padding-left: 1vw;
    bottom: 8vh;
    width: 32vw;
}

.idartes>img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.titulo_activo {
    position: absolute;
    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: 10vw;
    line-height: 1;
}

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

.contenido {
    position: absolute;
    display: flex;
    flex-direction: row;
    margin: 0%;
    padding: 0%;
    gap: 3vw;
    top: 0vh;
    left: 1.5vw;
}

#logo-captcha {
    width: 40vw;
}

#captcha {
    width: 200px;
    height: fit-content;
    padding-top: 40vh;
}

.cls-1 {
    fill: #000000;
}

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

#descripcion {
    padding-top: 40vh;
    padding-right: 5vw;
    padding-bottom: 10vh;
    width: 35vw;
    height: 55vh;
    overflow-y: scroll;
    color: #000000;
    margin: 0%;
    background-color: transparent;
    scrollbar-color: #0018d1;
}

#descripcion::-webkit-scrollbar {
    width: 2px;
    background-color: transparent;
}

#descripcion::-webkit-scrollbar-thumb {
    background: #0018d1;
}


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;
    color: var(--typo);
    padding-right: 1%;
    padding-left: 2vw;
    padding-right: 1.8vw;
}

footer>p {
    width: 100%;
}


a:link,
a:visited {
    text-align: right;
    text-decoration: none;
    color: #000000;
}

a:hover {
    color: #0018d1;
}

#date {
    color: #000000;
    font-size: 1vw;

}

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

#logo_ext {
    width: 45%;
    fill: #000000;
}

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

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

@media screen and (max-width: 600px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
        margin: 0;
        min-width: 320px;
        min-height: 100vh;
        background-color: var(--c);
        font-family: 'IBM Plex Sans', sans-serif;
        color: #000000;
    
    }
    
    header {
        position: relative;
        display: flex;
        top: 0%;
        margin: 0%;
        width: 90vw;
        justify-content: space-between;
        padding: 4vw;
    }
    
    header>img {
        width: 100px;
    }
    
    .creditos {
        position:relative;
        display: flex;
        flex-direction: column;
        width: 90vw;
        padding-left: 5vw;
        padding-right: 5vw;

        
        bottom: 0vh;
        border-top: 1px solid;
        border-top-color: #000000;
    
    
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .idartes {
        position: relative;
        display: flex;
        padding-left: 3vw;
        margin-top: 10vh;
        margin-bottom: 10vh;
        align-items: center;
        bottom: 8vh;
        width: 90vw;
    }
    
    .idartes>img {
        max-width: 100%;
        max-height: 100%;
        display: block;    
    }
    
    .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: 10vw;
        line-height: 1;
    }
    
    .captcha_titulo {
        margin: 0;
        position: absolute;
        /* top: 50%;
        left: 50%; */
    }
    
    .contenido {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90vw;
        height: fit-content;
        margin: 0%;
        padding: 5vw;
        gap: 3vw;
        top: 0vh;
        left: 0px;
    }
    
    #logo-captcha {
        width: fit-content;
        height: fit-content;
    }
    
    #captcha {
        width: 200px;
        height: fit-content;
        padding-top: 10vh;
    }
    
    .cls-1 {
        fill: #000000;
    }
    
    .cls-1:hover {
        fill: #0018d1;
    }
    
    #descripcion {
        padding-top: 10vh;
        padding-right: 5vw;
        padding-left: 5vw;
        width: 90vw;
        height: fit-content;
        /* overflow-y: scroll; */
        color: #000000;
        margin: 0%;
        background-color: transparent;
        scrollbar-color: #0018d1;
    }
    
    #descripcion::-webkit-scrollbar {
        width: 2px;
        background-color: transparent;
    }
    
    #descripcion::-webkit-scrollbar-thumb {
        background: #0018d1;
    }
    
    

    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: #ffffff;
    }
    
    footer>div {
        display: grid;
        grid-template-columns: min-content min-content min-content;
        gap: 5em;
        font-size: 0.9em;
        font-weight: 500;
        color: var(--typo);
        padding-right: 1%;
        padding-left: 2vw;
        padding-right: 1.8vw;
    }
    
    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>a {
        padding: 0%;
    }

    #date {
        display: none;
    }

    #impressum {
        display: none;
    }

}