#unity-fullscreen-button {
  position: absolute;
  right: 0px;
  width: 38px;
  height: 38px;
  background: url("fullscreen-button.png") no-repeat center;
}

#spinnerContainer {
  position: absolute;
  left: 42%;
  top: 35%;
  transform: translate(-50%, -50%);
}

#spinner {
  position: absolute;
  border: 16px solid #ffffff;
  border-top: 16px solid #df13b7;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

html,
body {
  height: 100%;
  margin: 0;
}

.main {
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  position: relative;
  width: 60%;
  aspect-ratio: 16 / 9;
  display: grid;
}

.canvas-container {
  width: 80%;
  height: 80%;
  aspect-ratio: 16 / 9;
  align-self: center;
  justify-self: center;
  background-color: rgb(0, 0, 0);
  display: grid;
}

#unity-canvas {
  align-self: center;
  justify-self: center;
  width: 100%;
  height: 100%;
}
