@font-face {
  font-family: 'Mona Sans';
  src: url('/assets/fonts/Mona-Sans.woff2') format('woff2 supports variations'), url('/assets/fonts/Mona-Sans.woff2') format('woff2-variations');
  font-weight: 200 900;
  font-stretch: 75% 125%;
}
html {
  font-family: 'Mona Sans';
}
body {
  margin: 0;
  padding: 0;
  height: 100vh;
}
body.preload {
  background-color: #0c478d;
  display: flex;
}
body.preload #preload-content {
  color: white;
  font-weight: bold;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
}
body.preload #preload-content .logo {
  width: 100%;
  max-width: 150px;
}
body.preload #preload-content .loading:after {
  content: ' .';
  animation: dots 1s steps(5, end) infinite;
}
@keyframes dots {
  0%, 20% {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
 }
  40% {
    color: white;
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
 }
  60% {
    text-shadow: 0.25em 0 0 white, 0.5em 0 0 rgba(0, 0, 0, 0);
 }
  80%, 100% {
    text-shadow: 0.25em 0 0 white, 0.5em 0 0 white;
 }
}
