body {
  padding: 0;
  margin: 0;
  background-color: #111;
  overflow: hidden;
}



.text-container {
  width: 100%;
  position: absolute;
  top: 46%;
  left:0;
  right:0;
  color: #fafafa;
  font-family: 'Pitch', monospace;
  font-weight: 400;
  font-size: 2.9em;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}

@media only screen and (min-device-width: 415px) {
.text-container {
  width: 100%;
  position: absolute;
  top: 46%;
  left:0;
  right:0;
  color: #fafafa;
  font-family: 'Pitch', monospace;
  font-weight: 400;
  font-size: 1.8em;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}
}

@media only screen and (min-device-width: 768px) {
.text-container {
  width: 100%;
  position: absolute;
  top: 46%;
  left:auto;
  right:auto;
  color: #fafafa;
  font-family: 'PitchLight', monospace;
  font-weight: 300;
  font-size: 24px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}
}

span {
  display: inline-block;
}

.reg-text {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  -webkit-transition: opacity 5s ease, -webkit-transform 3.33333s ease-out;
  transition: opacity 5s ease, -webkit-transform 3.33333s ease-out;
  transition: transform 3.33333s ease-out, opacity 5s ease;
  transition: transform 3.33333s ease-out, opacity 5s ease, -webkit-transform 3.33333s ease-out;
}
.reg-text.loaded {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.letter {
  -webkit-transition: opacity 5s ease, -webkit-transform 5s cubic-bezier(0.43, 0.1, 0.57, 0.9), -webkit-filter 5s ease;
  transition: opacity 5s ease, -webkit-transform 5s cubic-bezier(0.43, 0.1, 0.57, 0.9), -webkit-filter 5s ease;
  transition: transform 5s cubic-bezier(0.43, 0.1, 0.57, 0.9), filter 5s ease, opacity 5s ease;
  transition: transform 5s cubic-bezier(0.43, 0.1, 0.57, 0.9), filter 5s ease, opacity 5s ease, -webkit-transform 5s cubic-bezier(0.43, 0.1, 0.57, 0.9), -webkit-filter 5s ease;
  opacity: 0;
 /* -webkit-filter: blur(5px);
          filter: blur(5px);*/
}
.letter:nth-of-type(2) {
  -webkit-transform: translateY(-160px);
          transform: translateY(-160px);
  -webkit-transition-duration: 2.5s;
          transition-duration: 2.5s;
}
.letter:nth-of-type(3) {
 /* -webkit-filter: blur(0);
          filter: blur(0);*/
  -webkit-transform: translateY(-170px);
          transform: translateY(-170px);
  -webkit-transition-duration: 3.84615s;
          transition-duration: 3.84615s;
}
.letter:nth-of-type(4) {
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
  -webkit-transition-duration: 3.33333s;
          transition-duration: 3.33333s;
}
.letter:nth-of-type(5) {
  -webkit-transform: translateY(-150px);
          transform: translateY(-150px);
  -webkit-transition-duration: 2.5s;
          transition-duration: 2.5s;
}
.letter:nth-of-type(6) {
 /* -webkit-filter: blur(0);
          filter: blur(0);*/
  -webkit-transform: translateY(-180px);
          transform: translateY(-180px);
  -webkit-transition-duration: 2.17391s;
          transition-duration: 2.17391s;
}
.letter.loaded {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  /*-webkit-filter: blur(0);
          filter: blur(0);*/
}



/**
Copyright (c) 2017 by Eric Grucza (https://codepen.io/egrucza/pen/LkdPZP)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
**/