/* Project: Monopixel C V1.0.0
   Author: Gabriel Venier
   Website: gabrielvenier.com.ar/monopixel
   Description: Sitio autoadministrable para artistas
*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

svg {
    max-width: 100%;
    display: block;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
    line-height: 1;
}

.top_fade {
    position: fixed;
    top: -25px;
    left: 0;
    width: 100%;
    height: 10px;
    box-shadow: 0px 10px 20px hsl(0, 0%, 11%);
    z-index: 10000;
}


:root {
    --cl-texto-100: rgb(180, 180, 180);
    --cl-texto-050: rgba(180, 180, 180, .5);
    --cl-texto-010: rgba(180, 180, 180, .1);
    --cl-fondo-100: rgb(36, 36, 36);
    --cl-fondo-050: rgba(36, 36, 36, .5);
}

body {
    background: var(--cl-fondo-100);
    color: var(--cl-texto-100);
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
}

.container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.card {
    aspect-ratio: 1/1;
    padding: 0;
    margin: 0;
    gap: 0;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
}

svg {
    color: var(--cl-texto-050);
}

/* bottom_all ------------------------------------------------------------------------ */
.bottom_all {
    width: var(--w-l);
    margin-inline: auto;
    margin-top: 5em;
}

footer {
    width: var(--w--l);
    display: grid;
    gap: var(--gap-05);
    justify-items: center;
    color: var(--cl-texto-050);
    margin-block: 7em 3em;
    margin-inline: auto;
    text-align: center;
}

footer :last-child {
    display: flex;
    gap: var(--gap-02);
    align-items: center;
}

.pagina_error {
    display: grid;
    gap: var(--gap-1);
    padding: var(--gap-3);
    justify-items: start;
}