body {
  margin: 0;
  padding: 0;
  color: white;
  background-color: black;
  font-family: Roboto;
}

.scene {
  height: 100vh;
  width: 100vw;
  transition-duration: 1s;
  transition-property: opacity;
  display: none !important;
}
.scene.active {
  display: block !important;
}
.scene.active.flex-center {
  display: flex !important;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.number-big {
  font-size: 70vh;
  font-weight: 100;
  font-variant-numeric: tabular-nums lining-nums;
}

.glow {
  text-shadow: white 0px 0px 25px;
}

.subscene {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
}
