body {
  margin: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: #996400;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.center-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none; /* Let dice fall under this layer */
}

#totalDisplay {
  color: white;
  font-size: 2em;
  margin-bottom: 20px;
}

#controls {
  pointer-events: auto; /* Buttons remain clickable */
}

.dice {
  position: absolute;
  width: 100px;
  height: 100px;
  transition: all 0.3s ease;
}
