body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000; 
    overflow: hidden;
    color: white;
    font-family: Arial, sans-serif;
    user-select: none;
}

canvas {
    display: block;
    background: #000; 
}

#progress {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 1.2rem;
    color: lightgray;
    font-weight: bold;
}

#artistReference {
    position: absolute;
    top: 50%; 
    left: 20px; 
    transform: translateY(-50%); 
    color: white;
    font-size: 1.2rem;
    font-family: Arial, sans-serif;
    text-align: left;
    line-height: 1.5;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 8px;
    opacity: 0; /* Initially hidden */
    transition: opacity 1s ease-in-out;
    max-width: 300px; 
}

#artistReference a {
    color: #1e90ff;
    text-decoration: none;
}

#artistReference a:hover {
    text-decoration: underline;
}
