html {
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  color: #ffffff;
  background: #000000;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  font-size: 19px;
  font-family: "Courier", monospace, serif;
}

.credits #title {
  margin-bottom: 2em;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  display: inline-block;
}

.credits-wrap {
  position: fixed;
  width: 100%;
  animation: 220s credits linear infinite;
}

.credits {
  padding: 20px;
}

.audio-players {
  display: none;
}

@keyframes credits {
  0% {
    top: 100%;
  }
  100% {
    top: -9981px;
  }
}
.clearer {
  clear: both;
}

.sponsers {
  text-align: center;
  width: 400px;
  margin: auto;
  display: flex;
}

.sponsers .logo {
  width: 200px;
  float: left;
  padding: 20px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 535px) {
  .sponsers {
    text-align: center;
    width: 200px;
    margin: auto;
    display: block;
  }
  .sponsers .logo {
    width: 180px;
    float: none;
    padding: 20px;
    justify-content: center;
    align-items: center;
  }
}
.sponsers .logo, .spiral-break img {
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media (max-width: 820px) {
  .spiral-load {
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
  }
}
.snail {
  position: relative;
}

.snail img {
  -webkit-animation: move 10s linear infinite;
  animation: move 10s linear infinite;
  width: 80px;
  left: -15%;
  position: absolute;
  top: 0;
}

.sun {
  background-color: blue;
  -webkit-animation: day 10s linear infinite;
  animation: day 10s linear infinite;
  width: 30px;
  height: 30px;
  margin: auto;
  display: block;
  border-radius: 100%;
}

@keyframes day {
  0% {
    background-color: blue;
  }
  50% {
    background-color: yellow;
  }
  100% {
    background-color: blue;
  }
}
@-webkit-keyframes move {
  from {
    left: -15%;
  }
  to {
    left: 105%;
  }
}
@keyframes move {
  from {
    left: -15%;
  }
  to {
    left: 105%;
  }
}

/*# sourceMappingURL=credits.css.map */