body {
  font-family: monospace;
}

h1 {
  color: white;
  font-size: 32px;
  font-family: monospace;
}

h2 {
  color: white;
  font-size: 25px;
  font-family: monospace;
}

a {
  color: #fff;
  text-decoration: none;
  font-family: monospace;
  font-size: 2em;
}

.canvas_container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 450px;
}

#how_to_play_container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
}

#how_to_play {
  color: white;
  font-size: 20px;
  font-family: monospace;
}

#canvas {
  width: 800px;
  height: 450px;
  border-radius: 20px;
}

#back_button {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(5px);
  margin: 1rem;
}

#back_button:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2);
}
