html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #87CEEB;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

#app,
#canvas-wrap {
  width: 100%;
  height: 100%;
}

canvas {
  display: block !important;
  position: fixed;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}


.title-box {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 10;
  color: rgba(255,255,255,.92);
  background: rgba(0, 8, 18, .34);
  border: 1px solid rgba(255,255,255,.28);
  padding: 12px 14px 11px;
  backdrop-filter: blur(5px);
  pointer-events: none;
}

.title-main {
  font-size: 15px;
  line-height: 1;
  letter-spacing: .12em;
}

.title-meta {
  margin-top: 7px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .11em;
  color: rgba(255,255,255,.72);
}

.controls {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  pointer-events: none;
}

.readout {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.readout span {
  background: rgba(0, 8, 18, .48);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 10px;
  backdrop-filter: blur(5px);
}

.buttons {
  display: flex;
  gap: 8px;
  pointer-events: auto;
}

button {
  appearance: none;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0, 8, 18, .62);
  color: rgba(255,255,255,.74);
  padding: 10px 13px;
  font: inherit;
  font-size: 11px;
  letter-spacing: .09em;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

button:hover,
button:focus-visible {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

button.active {
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.92);
  color: #07111e;
}

@media (max-width: 620px) {
  
.title-box {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 10;
  color: rgba(255,255,255,.92);
  background: rgba(0, 8, 18, .34);
  border: 1px solid rgba(255,255,255,.28);
  padding: 12px 14px 11px;
  backdrop-filter: blur(5px);
  pointer-events: none;
}

.title-main {
  font-size: 15px;
  line-height: 1;
  letter-spacing: .12em;
}

.title-meta {
  margin-top: 7px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .11em;
  color: rgba(255,255,255,.72);
}

.controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: stretch;
    flex-direction: column;
  }

  .buttons {
    justify-content: flex-end;
  }

  .readout {
    max-width: 80%;
  }
}
