* {
  padding: 0;
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
  overflow: hidden;
  background: url(assets/images/bg.png) no-repeat center center fixed;
  background-size: cover;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  gap: 1rem;
}

canvas {
  height: 50vh;
  border: 2px solid whitesmoke;
  border-top: none;
  opacity: 0.9;
  border-radius: 4px;
}

.scores {
  display: flex;
  align-items: center;
  gap: 5px;
}

#score {
  font-size: 1rem;
  color: white;
}

#status {
  font-size: 0.9rem;
  color: rgb(0, 230, 11);
}

@media (min-width: 625px) {
  canvas {
    height: 60vh;
  }
}
