body {
  margin: 0;
  overflow: hidden;
  background-color: #222;
  font-family: Arial, sans-serif;
  text-align: center;
}
#gameCanvas {
  display: block;
  background: linear-gradient(to bottom, #333, #111);
}
#overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  border-radius: 10px;
  display: none;
}
.button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: yellow;
  color: black;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}
#highScores {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
  width: 250px;
}
#stats {
  position: absolute;
  top: 170px;
  left: 10px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
  width: 100px;
  height: 130px;
}
p {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
#logodiv {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 18px;
}
.logo {
  width: 250px;
  height: auto;
}
#startStopButton {
  position: absolute;
  top: 170px;
  left: 160px;
  padding: 10px 20px;
  background: yellow;
  color: black;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}
