html {
  height: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  color: #888;
  margin: 0;
  height: 100%;
}

main {
  display: table;
  height: 100%;
  width: 100%;
}

.container {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 0 1rem 2rem 1rem;
}

.container h1 {
  font-size: 50px;
  display: inline-block;
  margin: 0 2rem 2rem 2rem;
}

.container p {
  margin: auto;
  line-height: 1.5rem;
  max-width: 620px;
}

@media (max-width: 992px) {
  .container {
    margin: 1rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .container h1 {
    font-size: 36px;
  }
}

@media (max-width: 320px) {
  .container h1 {
    font-size: 24px;
  }
}

/* .loading {
  font-size: 30px;
}

.loading:after {
  overflow: hidden;
  position: absolute;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4,end) 900ms infinite;      
  animation: ellipsis steps(4,end) 900ms infinite;
  content: "\2026";
  width: 0px;
}

@keyframes ellipsis {
  to {
    width: 1.25em;    
  }
}

@-webkit-keyframes ellipsis {
  to {
    width: 1.25em;    
  }
} */

.ellipsis {
  position: absolute;
} 

.ellipsis > span::after {
  content: ".";
}

.ellipsis .one {
  opacity: 0;
  -webkit-animation: dot 1.3s infinite;
  -webkit-animation-delay: 0.0s;
  animation: dot 1.3s infinite;
  animation-delay: 0.0s;
}

.ellipsis .two {
  opacity: 0;
  -webkit-animation: dot 1.3s infinite;
  -webkit-animation-delay: 0.2s;
  animation: dot 1.3s infinite;
  animation-delay: 0.2s;
}

.ellipsis .three {
  opacity: 0;
  -webkit-animation: dot 1.3s infinite;
  -webkit-animation-delay: 0.3s;
  animation: dot 1.3s infinite;
  animation-delay: 0.3s;
}

@-webkit-keyframes dot {
  0% {
      opacity: 0;
  }
  50% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes dot {
  0% {
      opacity: 0;
  }
  50% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}