/* =========================================================
   ABOUT ME
   GALERÍA DE TRES FILAS
========================================================= */

.about-gallery {
    position: fixed;

    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    gap: 3px;
   background-color: black;

    z-index: 1;
}


/* =========================================================
   FILAS
========================================================= */

.about-row {
    width: 100%;

    flex: 1 1 0;

    min-height: 0;

    overflow: hidden;

    display: flex;
    align-items: center;
}


/* =========================================================
   TRACK
========================================================= */

.about-track {
    display: flex;

    align-items: center;

    gap: 3px;

    width: max-content;
    height: 100%;

    flex-shrink: 0;

    will-change: transform;

    transform: translate3d(0, 0, 0);
}


/* =========================================================
   IMÁGENES
========================================================= */

.about-track img {
    display: block;

    width: auto;
    height: 100%;

    object-fit: cover;

    flex-shrink: 0;
    border-radius: 3px;
}

.about-image-block {
    display: flex;

    align-items: center;

    gap: 3px;

    height: 100%;

    flex-shrink: 0;
}

.about-track img {
    display: block;

    width: auto;

    height: 100%;

    object-fit: cover;

    flex-shrink: 0;

    margin: 0;
}











/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 800px) {

    .about-gallery {
        gap: 3px;
    }

    .about-row {
        flex: 1 1 0;
        min-height: 0;
    }

    .about-track {
        gap: 3px;
    }

    .about-track img {
        width: auto;
        height: 100%;
    }

}





/*CURSOR*/

#customCursor {
    position: fixed;

    width: 12px;
    height: 12px;

    background: rgb(102, 102, 102);
    border-radius: 50%;

    pointer-events: none;

    z-index: 999999;

    transform: translate(-50%, -50%);

    left: 0;
    top: 0;
}
