:root {
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "ROND" 0;

  --clr-text: #f3f1ef;
  --clr-background: #0f0f0f;
  --clr-accent: #ea6234;
}

body {
  /* overflow-y: hidden; */
  background-color: var(--clr-background);
}

#Parent {
  height: 90svh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#Explainer {
  display: none;
}

h1 {
  font-size: clamp(2rem, 15vw, 15em);
  line-height: 1em;
  padding: 0;
  margin: 0;
  color: var(--clr-text);
}

p {
  font-size: 3em;
  padding: 0;
  margin: 0;
  font-style: italic;
  color: var(--clr-accent);
}

.hidden {
  display: none;
}

#Landing {
  perspective: 1000px;
}

#Heading {
  display: inline-block;
  transform-style: preserve-3d;
}

.flip {
  animation: flip 0.6s ease-in-out;
}

@keyframes flip {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(90deg);
  }

  51% {
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  100% {
    transform: rotateX(0deg);
  }
}
