@import url("reset.css");
@import url("utils.css");
:root {
    --color-blue: #00ffff;
    --color-red: #f40322;
    --color-red-dark: #4a2c38;
    --color-red-light: #f73c5e;
    --color-black: #000000;

    background: linear-gradient(rgba(255, 255, 255, 0.604), rgba(255, 255, 255, 0.852)),  url("./bg.png");
    font-family: sans-serif;
}

a:hover {
    color: var(--color-red)
}

body {
    font-weight: bold;
    font-size: 20px;
    color: var(--color-blue);
    -webkit-text-stroke: 0.1em var(--color-black);
    paint-order: stroke fill;/*https://developer.mozilla.org/en-US/docs/Web/CSS/paint-order*/
    min-height: 100dvh;
    display: flex;
    justify-content: center;
}

h1 {
    margin-top: 16px;
    margin-bottom: 20px;
}
h2 {
    margin-top: 12px;
    margin-bottom: 12px;
}
p {
    margin-top: 6px;
    margin-bottom: 16px;
}
footer {
    padding: 10px 0;
    margin-top: 10px;
}
img {
    max-width: 100%;
    &:hover {
        animation: multicolor alternate infinite 3s;
    }
    
}

@keyframes multicolor {
    0% {
        filter: sepia(100%) saturate(300%) brightness(70%) hue-rotate(0.35turn);
    }
    50% {
         filter: sepia(100%) saturate(300%) brightness(70%) hue-rotate(0.75turn);
    }
}

.multilang {
    [lang=es] {
        display: none;
    }
    &:hover, &:focus {
        [lang=en] {
           display: none;
        }
        [lang=es] {
            display: unset;
        }
    }
}