body {
  text-align: center;
}

.wrapper {
  overflow: hidden;
}

.scrollDown {
  font-size: 60px;
  min-height: 100vh;
  -webkit-animation: colorCycle 7s infinite ease-in-out;
  animation: colorCycle 7s infinite ease-in-out;
}

.scrollDown:before,
.scrollDown:after {
  content: "\2193 \2193";
  -webkit-animation: flash 1.5s 6;
  animation: flash 1.5s 6;
}

.debslider {
  visibility: hidden;
  min-height: 3vh;
  display: block;
  margin: 0 auto;
}

.debphrase {
  min-height: 80vh;
  font-weight: 100;
}

.debphrase a {
  text-decoration: none;
  color: #F94816;
  text-shadow: 0.2vw 0.2vw 0 #731c03;
}

.debphrase a:visited {
  text-decoration: none;
  color: #F94816;
  text-shadow: 0.2vw 0.2vw 0 #731c03;
}

.debphrase span {
  color: white;
  font-size: 18px;
  font-weight: thin;
  font-style: italic;
}

.debphrase .letter {
  display: inline-block;
  margin: 0 0.2vw;
  font-size: 250%;
}

.debphrase .letters {
  display: inline-block;
  margin: 0 0.2vw;
  font-size: 8vw;
}

.debphrase .letter.color0 {
  color: #A2E4F2;
  text-shadow: 0.2vw 0.2vw 0 #0000ff;
}

.debphrase .letter.color1 {
  color: #E43485;
  text-shadow: 0.2vw 0.2vw 0 #700f3c;
}

.debphrase .letter.color2 {
  color: #F94816;
  text-shadow: 0.2vw 0.2vw 0 #731c03;
}

.debphrase .letter.color3 {
  color: #E9D443;
  text-shadow: 0.2vw 0.2vw 0 #84750f;
}

.debphrase .letter.color4 {
  color: #FD91F7;
  text-shadow: 0.2vw 0.2vw 0 #ff0000;
}

.debphrase .letter.color5 {
  color: #28963F;
  text-shadow: 0.2vw 0.2vw 0 #081d0c;
}

.debphrase .letter.color6 {
  color: #ffffff;
  text-shadow: 0.2vw 0.2vw 0 #000000;
}

.debphrase .letter.color7 {
  color: #FA476E;
  text-shadow: 0.2vw 0.2vw 0 #a40427;
}

@-webkit-keyframes colorCycle {
  0% {
    color: #F94816;
  }

  14.286% {
    color: #E9D443;
  }

  28.572% {
    color: #FD91F7;
  }

  42.858% {
    color: #28963F;
  }

  57.144% {
    color: #E43485;
  }

  71.43% {
    color: #A2E4F2;
  }

  85.716% {
    color: #FA476E;
  }

  100% {
    color: #F94816;
  }
}

@keyframes colorCycle {
  0% {
    color: #F94816;
  }

  14.286% {
    color: #E9D443;
  }

  28.572% {
    color: #FD91F7;
  }

  42.858% {
    color: #28963F;
  }

  57.144% {
    color: #E43485;
  }

  71.43% {
    color: #A2E4F2;
  }

  85.716% {
    color: #FA476E;
  }

  100% {
    color: #F94816;
  }
}