body {
    width: 100wh;
    height: 90vh;
    color: #fff;
    background: linear-gradient(-45deg, #252525, #8d0bd0, #5f27cd, #8d0bd0, #252525);
    background-size: 400% 400%;
    -webkit-animation: Gradient 14s ease infinite;
    -moz-animation: Gradient 14s ease infinite;
    animation: Gradient 14s ease infinite;
}
p {
    font-family: "Bungee Outline";
    font-weight: 700;
    margin: 0;
    color: #ecf0f1;
    opacity: 0.2;
}
.wrapper {
    position: absolute;
    top: 40%;
    left: 48%;
    transform: translate(-50%, -50%);
}
.wrapper-2 {
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
}
.wrapper-2 p {
    opacity: 0.7;
}
.wrapper-3 {
    position: absolute;
    top: 60%;
    left: 48%;
    transform: translate(-50%, -50%);
}
.wrapper-4 {
    position: absolute;
    top: 90%;
    left: 47%;
}
.wrapper-3 p {
    opacity: 0.2;
}
.wrapper-4 p {
    font-family: Helvetica, sans-serif;
    opacity: 1;
}

a {
    color: #ecf0f1;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: magenta;
}

a:active {
  text-decoration: none;
}

.text {
    margin: 0;
    font-size: 86px;
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}
.text .line {
    overflow: hidden;
    white-space: nowrap;
    height: 70px;
    line-height: 0.9;
}
.text .line:first-child + .line {
    margin-left: 75px;
}
.text .line:first-child + .line + .line {
    margin-left: 150px;
}
.text .line > p {
    margin: 0;
    height: 70px;
    overflow: hidden;
    font-size: 1em;
    line-height: 0.9;
    white-space: nowrap;
    -webkit-animation: moveWords 12s ease infinite;
    -moz-animation: moveWords 12s ease infinite;
    animation: moveWords 12s ease infinite;
}
.text .line:nth-child(odd) {
    transform: skew(60deg, -30deg) scaleY(0.66667);
}
.text .line:nth-child(even) {
    transform: skew(0deg, -30deg) scaleY(1.33333);
}
@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes moveWords {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}
