body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #3498db; /* Changed background color to blue */
}
canvas {
    border: 1px solid #000;
    background-color: #f2f2f2;
}
.score {
    font-size: 20px;
    color: #fff; /* Changed score display color to white */
}
.controls {
    margin-top: 20px;
}
.play-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
.button-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #008000;
  color: #ffffff;
  text-align: center;
  border-radius: 5px;
  text-decoration: none; /* Removes the underline from links */
  font-weight: bold;
  transition: background-color 0.3s; /* Smooth background color transition on hover */
}

.button-link:hover, .button-link:focus {
  background-color: #ADFF2F;
  color: #ffffff;
  text-decoration: none; /* Keeps the underline off on hover/focus */