/* styles.css */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #121212;
    color: white;
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 20px;
    color: #ff4d4d;
}

#game-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
}

canvas {
    border: 2px solid #ff4d4d;
    background-color: #282828;
}