body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #282c34;
    color: #fff;
    margin: 0;
}

h1 {
    color: #61dafb;
    margin-bottom: 20px;
}

.game-container {
    display: flex;
    gap: 20px;
    background-color: #3a404d;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

canvas {
    background-color: #000;
    border: 2px solid #61dafb;
    display: block;
}

.info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    padding: 10px;
    background-color: #21252b;
    border-radius: 5px;
}

.info-panel p {
    margin: 5px 0;
    font-size: 1.1em;
}

.info-panel span {
    font-weight: bold;
    color: #61dafb;
}

button {
    background-color: #61dafb;
    color: #282c34;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
    margin-top: 20px;
}

button:hover {
    background-color: #21a1f1;
}
