* {
  margin: 0px;
  padding: 0px;
}
html,
body,
canvas {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: Helvetica, Verdana, Arial, sans-serif;
}


#unity-fullscreen-button {
  position: absolute;
  right: 0px;
  width: 38px;
  height: 38px;
  background: url("fullscreen-button.png") no-repeat center;
}

#spinnerContainer {
  z-index: 50;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#spinner {
  border: 16px solid #ffffff;
  border-top: 16px solid #4C9C2E;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.main {
  /* height: 100%; */
  background-color: #ffffff;
  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: #ffffff;
  display: grid;
}

#unity-canvas {
  margin: 0 0 0 0;
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
}


#unity-container {
  /* position: absolute; */
}
#unity-container.unity-desktop {
  left: 50%;
  top: 50%;
  /* transform: translate(-50%, -50%); */
}
