@import url(https://fonts.googleapis.com/css?family=Montserrat);
@font-face {
  font-family: "futura";
  src: url("./assets/futura.woff") format("woff"); }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "futura"; }

p {
  font-family: "futura"; }

.note {
  display: block;
  color: #333;
  background: #f8f8f8;
  font-size: 32px;
  padding: 40px;
  width: 50%; }

/* Even works with media queries. */
@media (max-width: 768px) {
  .note {
    font-size: 14px; } }

#logo {
  margin: 0 auto;
  width: 1000px;
  height: auto; }

.logo_container {
  padding: 40px;
  width: 100%;
  background: #c52126; }

#wasd {
  z-index: 3;
  position: absolute;
  bottom: 10;
  left: 10; }

body {
  position: relative;
  width: 100%;
  height: 100vh;
  font-family: "verlag"; }

.loading_background {
  visibility: visible;
  opacity: 1;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  -webkit-transition: 0.25s ease all;
  transition: 0.25s ease all; }

.wrap {
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

.text {
  color: #c52126;
  display: inline-block;
  margin-left: 5px; }

.bounceball {
  position: relative;
  display: inline-block;
  height: 37px;
  width: 15px; }
  .bounceball:before {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #c52126;
    -webkit-transform-origin: 50%;
            transform-origin: 50%;
    -webkit-animation: bounce 500ms alternate infinite ease;
            animation: bounce 500ms alternate infinite ease; }

@-webkit-keyframes bounce {
  0% {
    top: 30px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    -webkit-transform: scaleX(2);
            transform: scaleX(2); }
  35% {
    height: 15px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1); }
  100% {
    top: 0; } }

@keyframes bounce {
  0% {
    top: 30px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    -webkit-transform: scaleX(2);
            transform: scaleX(2); }
  35% {
    height: 15px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1); }
  100% {
    top: 0; } }
