
h1, h2, h3, h4  {
  font-size: 75%;
  letter-spacing: 1.5px;
  font-weight: bold;
}
h1 {
  font-size: 125%;
}
h4 {
  text-transform: uppercase;
}

body {
  overflow-x: hidden;
}

.container {
  z-index: 2;
}

#header {
  margin-top: 50px;
}
#brief {
  font-style: italic;
  margin-top: 50px;
}
#main {
  margin-top: 50px;
}

h2 {
  font-style: normal;
  text-transform: uppercase;
  font-size: 100%;
}

#footer {
  margin: 50px 0;
}
#footer p {
  color: #888888;
  }
#footer a {
  color: #8888ff;
}

.floater {
  /* display: none; */
  position: absolute;
  z-index: 1;
  animation: move 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  top: 0;
  left: 0;
  }

@keyframes move {
    from {
      transform: rotate(0deg) scale(1) translateX(-300px) translateY(-100px);
    }
    to {
      transform: rotate(359deg) scale(0.5) translateX(500px) translateY(-800px);
    }
  }
