body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
}

h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

canvas {
    border: 10px solid white;
    border-radius: 15px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.info {
    margin-top: 20px;
    font-size: 1.2rem;
}

.info span {
    font-weight: bold;
}

footer {
    margin-top: 30px;
    font-size: 0.9rem;
}