.intro {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
}

.intro--out {
  z-index: -1;
}

.intro-background {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 1s cubic-bezier(0.455, 0, 0.2, 0.955);
  background-color: black;
}

.intro--out .intro-background {
  transform: translateY(-100%) translateY(4rem);
}

.intro-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.intro-canvas--visible {
  opacity: 1;
}

.intro-message {
  display: none;
  width: 100%;
  padding: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: 'TO Leaf';
  font-size: 2em;
  line-height: 1.3;
  text-align: center;
  transition: opacity 1s ease-in-out 1s;
}

.intro-message--out {
  opacity: 0;
  transition-delay: 0s;
}