body {
    margin: 0;
    overflow: hidden;
    background-color: #f0f0f0; /* Light gray background */
    font-family: Arial, sans-serif; /* Change to a preferred font */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8); /* White background with opacity */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5em;
    margin: 0;
    padding-bottom: 10px;
    color: #333;
}

p {
    font-size: 1.2em;
    margin: 0;
    color: #666;
}

canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
