.sketch-28-2026 {
    margin: 0;
    padding: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    animation: fade-in 2s ease forwards;
    overflow: hidden;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    width: 600px;
    height: 600px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-auto-rows: minmax(100px, auto);
}

@keyframes grow {
    0% { 
        transform: scale(0.9);
    }
    100% { 
        transform: scale(1);
    }
}

.box {
    border: 1px solid cyan;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: grow 4s linear infinite;
    animation-delay: var(--animation-delay, 0s);
    min-width: 0;
    min-height: 0;
}
