body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
    font-family: sans-serif;
    color: white;
    touch-action: none; /* Prevent default touch actions like scrolling */
    user-select: none; /* Prevent text selection */
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

#info {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    pointer-events: none;
    transition: opacity 0.3s;
}

@media (max-width: 600px) {
    #info {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        text-align: center;
        font-size: 0.8rem;
    }
    
    h1 {
        font-size: 1.2rem;
    }
}

h1 {
    margin: 0;
    font-size: 1.5rem;
}

p {
    margin: 5px 0 0;
    font-size: 0.9rem;
}
