body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    max-width: 800px;
}

h1 {
    font-size: 4em;
    margin-bottom: 0.2em;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 1em;
    color: #cccccc;
}

p {
    font-size: 1.2em;
    margin-bottom: 2em;
}

canvas {
    background-color: #006400; /* Dark green for the pool table */
    border: 10px solid #8B4513; /* Brown border for the table frame */
    border-radius: 10px;
} 