body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000;
}
main {
  padding: 10vw 0;
}
ul {
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
}
li {
  margin: 10vw 0;
  text-align: left;
}
p {
  display: block;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 2vw;
  font-weight: 900;
  line-height: 1.2;
  
  transform: rotate(-4deg)
             skew(-4deg);
}
p + p {
  margin-top: 10px;
}
li:first-child {
  margin-top: 0;
}
li:last-child {
  margin-bottom: 0;
}
li:nth-child(even) {
  text-align: right;
}
a {
  color: #fff;
}
a:hover {
  text-decoration: none;
}
[data-reveal="content"] {
  display: inline-block;
  position: relative;
}
[data-reveal="cover"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: 1;
}
[data-reveal="text"] {
  opacity: 0;
}
[data-js="reveal"].loaded [data-reveal="cover"] {
  -webkit-animation: reveal-cover 2.5s ease-in-out;
          animation: reveal-cover 2.5s ease-in-out;
}
[data-js="reveal"].loaded [data-reveal="text"] {
  opacity: 1;
  -webkit-animation: reveal-text 2.5s ease-in-out;
          animation: reveal-text 2.5s ease-in-out;
}
@-webkit-keyframes reveal-cover {
  0% {
    width: 0;
    left: 0;
  }
  44% {
    width: 100%;
    left: 0;
  }
  54% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes reveal-cover {
  0% {
    width: 0;
    left: 0;
  }
  44% {
    width: 100%;
    left: 0;
  }
  54% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@-webkit-keyframes reveal-text {
  0% {
    opacity: 0;
  }
  44% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
}
@keyframes reveal-text {
  0% {
    opacity: 0;
  }
  44% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
}