@import url("https://fonts.googleapis.com/css?family=Lato:100");
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #111111;
}

div {
  justify-content: center;
  align-items: center;
}

.loading {
  display: flex;
  color: white;
  font-size: 2rem;
  font-family: Lato, sans-serif;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
}
.loadingTitle {
  display: flex;
  color: white;
  font-size: 2.5rem;
  font-family: Lato, sans-serif;
  letter-spacing: 1rem;
  text-transform: uppercase;
}
.loading span {
  animation: shrink 2s infinite;
}

@keyframes shrink {
  50% {
    transform: scale(0);
  }
}