html, body {
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-image: url("Assets/bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

canvas {
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
}

.title {
  margin-bottom: 1rem;
  font-size: 3rem;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.score {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
} 