body {
  position: relative;
  padding: 0;
  margin: 0;
}

button {
  position: fixed;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 4px,
    #fff 0,
    #fff 8px
  );
  border: none;
  outline: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  z-index: 2;
  right: 10px;
  top: 10px;
  opacity: 0;
}
button.active {
  background: repeating-linear-gradient(
    0deg,
    white 0,
    white 4px,
    #1d1d1b 0,
    #1d1d1b 8px
  );
}

#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1.5s ease-in-out, z-index 0.1s 1.5s;
}

#intro img {
  max-width: 80%;
  max-height: 80%;
}

#intro.hide,
.hide {
  opacity: 0;
  z-index: -1;
}

.stage {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
}

video {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  display: none;
}

video.video-visible {
  display: block;
}

.stage_1 nav {
  position: fixed;
  bottom: 20px;
  min-width: 100%;
  text-align: center;
  opacity: 0;
}

#intro.hide ~ .stage_1 nav,
#intro.hide ~ #stage_toggle {
  opacity: 1;
  transition: opacity 0.5s 1.5s ease-in-out;
}

.stage_1 nav ul {
  list-style: none;
  padding: 5px 10px;
  outline: 2px solid rgba(200, 200, 200, 0.8);
  border-radius: 50px;
  display: inline-block;
}

.stage_1 nav ul li {
  display: inline-block;
  line-height: 15px;
}

.stage_1 nav ul li a {
  text-decoration: none;
  color: white;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  background-color: rgba(200, 200, 200, 0.4);
  display: inline-block;
  text-indent: -9999px;
  margin: 0 20px;
}

.stage_1 nav ul li a:hover,
.stage_1 nav ul li a.active {
  background-color: rgba(200, 200, 200, 0.9);
}

.stage_2 {
  background-color: #fff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  right: 50px;
}

.stage_2 .moire-content {
  display: flex;
  flex-direction: row;
  width: 1068px;
}

.moire-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.moire-left, .moire-right {
  position: relative;
  width: 50%;
  height: 100vh;
  border-collapse: collapse;
}

.moire-left .moire-mask {
  background: repeating-linear-gradient(
    90deg,
    white 0,
    white 6px,
    transparent 0,
    transparent 12px
  );
}

.moire-right .moire-mask {
  background: repeating-linear-gradient(
    90deg,
    white 0,
    white 6px,
    transparent 0,
    transparent 12px
  );
}


#moire-overlay {
  position: absolute;
  top: 0;
  width: 4000px;
  height: 100%;
  z-index: 2;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 6px,
    #1d1d1b 0,
    #1d1d1b 12px
  );
}

.stage_2 nav {
  position: fixed;
  top: 50%;
  margin-top: -135px;
  right: 12px;
}

.stage_2 nav ul {
  list-style: none;
  padding: 10px 5px;
  outline: 2px solid rgba(200, 200, 200, 0.8);
  border-radius: 50px;
  display: inline-block;
}

.stage_2 nav ul li {
  line-height: 15px;
}

.stage_2 nav ul li a {
  text-decoration: none;
  color: white;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  background-color: rgba(200, 200, 200, 0.4);
  display: inline-block;
  text-indent: -9999px;
  margin: 20px 0;
}

.stage_2 nav ul li a:hover,
.stage_2 nav ul li a.active {
  background-color: rgba(200, 200, 200, 0.9);
}

@font-face {
  font-family: "NeueMontreal";
  src: url("fonts/PPNeueMontreal-Bold.otf");
}

.moire-content p {
  font-family: "NeueMontreal";
  font-size: 5em;
  color: #1d1d1b;
  text-transform: uppercase;
  margin: 0;
}

.moire-content .moire {
  display: none;
}
.moire-content .moire-visible {
  display: inline-block;
}

.moire-left .moire1 {
  margin-top: 80px
}

.moire-left .moire1 p {
  font-size: 86px;
  line-height: 86px;
}
.moire-left .moire1 p.right {
  padding-left: 240px
}

.moire-left .moire2 {
  position: absolute;
  left: 1rem;
  top: 4rem;
}

.moire-left .moire3 {
  margin-top: 30px;
  font-size: 25px;
  line-height: 125px;
}

.moire-left .moire4 {
  margin-top: 130px;
  font-size: 16px;
  line-height: 70px;
}
.moire-left .moire4 p:first-child {
  margin-bottom: 170px;
}

.moire-right .moire1 {
  margin-top: 160px
}

.moire-right .moire1 p {
  font-size: 180px;
  line-height: 170px;
}

.moire-right .moire2 {
  position: absolute;
  right: 1rem;
  bottom: 4rem;
  text-align: right;
}

.moire2 p {
  font-size: 110px;
  line-height: 110px;
}

.moire-right .moire3 {
  margin-top: 30px;
  font-size: 25px;
  line-height: 125px;
  text-align: right;
}

.moire-right .moire4 {
  margin-top: 140px;
  font-size: 25px;
  line-height: 125px;
  text-align: right;
}
