@keyframes bg-slide {
  from {
    background-position: 96px calc(50vh - 32px); }
  to {
    background-position: 32px calc(50vh - 32px); } }
@-webkit-keyframes bg-slide {
  from {
    background-position: 96px calc(50vh - 32px); }
  to {
    background-position: 32px calc(50vh - 32px); } }
@keyframes text-slide {
  0% {
    left: 128px;
    opacity: 0; }
  75% {
    opacity: 0.5; }
  100% {
    left: 32px;
    opacity: 1; } }
@-webkit-keyframes text-slide {
  0% {
    left: 128px;
    opacity: 0; }
  75% {
    opacity: 0.5; }
  100% {
    left: 32px;
    opacity: 1; } }
html, body {
  padding: 0;
  margin: 0;
  background-color: #121212;
  background-image: url("../img/bg/bg-grid.png");
  background-position: center;
  font-family: 'Lato', sans-serif;
  animation: bg-slide 2s linear infinite;
  -webkit-animation: bg-slide 2s linear infinite; }

.text {
  position: absolute;
  top: 50%;
  left: 32px;
  color: #ddd;
  background-color: #121212;
  height: 88px;
  margin-top: -44px;
  opacity: 1;
  animation: text-slide 2s ease-out;
  -webkit-animation: text-slide 2s ease-out; }
  .text h1 {
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 56px;
    font-size: 56px;
    font-weight: 300; }
  .text p {
    margin: 0;
    text-indent: 4px;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 1px;
    word-spacing: 2px;
    text-transform: lowercase;
    font-weight: 300; }
  .text pre {
      margin: 5px 0 0 0;
      padding-left: 4px;
      font-size: 12px;
      line-height: 1.4;
      letter-spacing: 1px;
      font-family: inherit;
      word-spacing: 2px;
      font-weight: 300; }