/* style.css */

body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #222;
    color: #eee;
}

h1 a {
    display: inline-block;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
}

canvas {
    background-color: #333;
    border: 2px solid #eee;
}

#gameStatus {
    margin-top: 20px;
    font-size: 1.2em;
}

#gameStatus p {
    margin: 5px 0;
}

#startButton {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.5em;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
}

#startButton:hover {
    background-color: #45a049;
}