* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jersey 25", sans-serif;
  background-color: rgba(20, 20, 20, 1);
  color: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

#game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(34, 49, 63, 0.9);
  border: 0.1rem solid rgba(255, 255, 255, 0.3);
  padding: 2rem;
  border-radius: 1rem;
}

#interaction-display {
  margin-top: 1rem;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 40rem;
}

canvas {
  background-color: rgba(210, 234, 250, 1);
  width: 40rem;
  height: 30rem;
}

footer {
  position: absolute;
  bottom: 1rem;
  text-align: center;
  font-size: 0.8rem;
}

footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
