/* style.css */
html, body { 
    height: 100%; 
    margin: 0; 
    background-color: rgb(0, 255, 47);
    font-family: "Bitcount Ink", sans-serif;
}


.stage{
    height: 100vh;
    display: grid;
    gap: 4px;
    padding: 12px;
    grid-auto-rows: clamp(28px, 6vw, 50px);
    font-size: 8px;
}


.row{
    display: flex;
    gap: 4px;
}

.cell{
    display: flex;
    flex: 1 1 0;
    border-radius: 1px;
    background: rgba(0, 0, 0, 0.001);
    transition: flex-grow 350ms ease, background 350ms ease;

    align-items: center; 
    justify-content: center;
    text-align: center;
    min-width: 0;
    overflow: hidden;
}

.cell img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    transition: transform 350ms ease;
    transform-origin: center;
}

.cell:hover{
    flex-grow: 3;
    background: rgba(255, 0, 162, 0.36);
    font-size: 40px;
}

.cell:hover img{ 
    object-fit: fill; 
    transform: scaleX(1.1);
}

