.sketch-31-2026 {
    margin: 0;
    padding: 0;
    background-color: black;
    animation: fade-in;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

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

canvas { width: 600px; height: 600px; display: block; }