body {
  background-color: #151515;
  font-family: Lucida Console,Lucida Sans Typewriter,monaco,Bitstream Vera Sans Mono,monospace;
  font-size: 16px;
  color: #FFF;
}
::selection {
  color: #151515;
  background: #FFF;
}
.colored {
  color: #a1ffed;
}
.colored::selection {
  color: #151515;
  background: #a1ffed;
}
a,
a:visited,
a:active {
  color: #a1ffed;
}
header {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 80px;
}
footer {
  margin-top: 100px;
  padding: 1px 0;
  background-color: #111;
}
footer div.creator {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 700px;
  margin: 80px auto;
}
footer div.creator div.made-by {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  width: 160px;
}
@keyframes rotate360 {
  to {
    transform: rotate(360deg);
  }
}
footer div.creator div.made-by img.loading {
  animation: 30s rotate360 infinite linear;
}
footer div.creator div.made-by img {
  width: 160px;
  /* Need a specific value to work */
  max-width: 51%;
  z-index: 99999;
  opacity: 0.95;
  position: absolute;
}
footer div.creator div.made-by img.loading {
  width: 160px;
  max-width: 100%;
  z-index: 1;
}
