.model-viewer-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #faf2e7c5;
  backdrop-filter: blur(8px); /* blur the background */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: grab;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.model-viewer-box-render-area {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.model-viewer-box-close {
  position: absolute;
  right: 3vw;
  top: 3vh;
  cursor: pointer;
  z-index: 1000;
}
