body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #000;
    font-family: Arial, sans-serif;
    color: white;
}

canvas {
    border: 2px solid white;
}

.info {
    text-align: center;
    margin-top: 20px;
}

.control {
    margin-top: 10px;
}

#startPauseButton, #toggleControlsButton {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: green;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#toggleControlsButton {
    padding: 10px 20px;
    font-size: 16px;
    color: wblack;
    background-color: grey;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#startPauseButton.red {
    background-color: red;
}

#controlsText {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: grey;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: none;
    margin-top: 10px;
}

.info p {
    font-size: 18px;
    margin: 5px 0;
}