@import "https://fonts.googleapis.com/css?family=Rubik+Mono+One";
body {
  background:#000000;
  overflow-x: hidden;
  font-family: 'Rubik Mono One', sans-serif;
  padding: 40px;
  text-align: center;
}

.words {
  color: #fff;
  font-size: 0;
  line-height: 1;
}
.words span {
  font-size: 60px;
  display: inline-block;
  -webkit-animation: move 2s ease-in-out infinite;
          animation: move 2s ease-in-out infinite;
}
.words span:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.words span:nth-child(3) {
  -webkit-animation-delay: 1.0s;
          animation-delay: 1.0s;
}
.words span:nth-child(4) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translate(-33%, 0);
            transform: translate(-33%, 0);
  }
  50% {
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  }
  100% {
    -webkit-transform: translate(33%, 0);
            transform: translate(33%, 0);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translate(-33%, 0);
            transform: translate(-33%, 0);
  }
  50% {
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  }
  100% {
    -webkit-transform: translate(33%, 0);
            transform: translate(33%, 0);
  }
}
* {
  box-sizing: border-box;
}

.about {
  max-width: 450px;
    margin: 29px auto;
    /* border: 2px solid #6d5b5e; */
    color: #000;
    padding: 11px;
    font-family: monaco, courier, mono-space;
    line-height: 2;
    /* box-shadow: 5px 5px 0 #333; */
}
.about a {
  
    color: #000;
    text-decoration: none;
    padding: 1px 4px;
    white-space: nowrap
}