body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: Monospace;
}

html {
  margin: 0;
}

canvas {
  width: 100%;
  height: 100%;
  outline: none;
  display: block;
}

scene {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}


.flex-container {
  position: absolute;
  top: 85%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
}

.overlay  {
  margin: 2px;
  padding: 2px;
  display: inline;
  z-index: 99;
  font-size: 2vw;
}

/* more space for the Stats.js button name */
.dg .cr.function .property-name {
  width: 100% !important;
}

.page-title {
  position: fixed;
  top: 0.75rem;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
}
.page-title span {
  color: #99ff4e;
}

.view-source-button {
  display: block;

  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;

  padding: 0.75rem;
  border-radius: 50%;

  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.view-source-button:hover {
  background-color: #f3f3f3;
}
.view-source-button img {
  display: block;
  width: 1.5rem;
  opacity: 0.8;
}



.prevent-select {
  touch-action: none;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}



:root {
  --adobe-dark-blue: #033E8C;
  --adobe-light-blue: #048ABF;
  --adobe-yellow: #F2B705;
  --adobe-orange: #D96704;
  --adobe-red: #BF1304;
}

.controls {
  color: var(--adobe-orange)
}

.separators {
  color: var(--adobe-dark-blue)
}

.break {
  flex-basis: 100%;
  height: 20;
}

.bottom {
  color: var(--adobe-light-blue);
  text-align: center;
}
