body {
  margin: 0;
  font-family: sans-serif;
  background: #f0f0f0;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  background-color: rgb(184 151 215);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#menu {
  text-align: center;
}

#gameUI {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#game-container {
  width: 90vw;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

#gameCanvas {
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

#winText {
  display: none;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: green;
  background-color: rgb(162, 253, 253);
  font-weight: bold;
}