body {
  font-family: Arial, sans-serif;
  background-color: #000000;
  color: white;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

h1 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: white;
}

.timer-box, .game-box {
  border: 3px solid white;
  border-radius: 15px;
  padding: 30px 50px;
  background-color: white;
  color: black;
}

.timer-box p, .game-box p {
  font-size: 1.5em;
  margin: 10px 0;
}

canvas#game {
  display: block;
  margin: auto;
  background-color: white;
  border: 1px solid black;
}

button#restart {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1em;
  background-color: black;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

button#restart:hover {
  background-color: #333;
}
