.sketch-27-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 {
    border: 2px solid white;
    border-radius: 100%;
}
