@charset "UTF-8";
html, body {
  width: 100%;
  height: 100%;
}

body {
  background: #9a0000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

svg {
  position: absolute;
  z-index: -100;
  pointer-events: none;
}

.main {
  padding: 200px;
  position: relative;
  filter: url("#goo");
  opacity: 0.85;
  transition: 0.5s opacity;
  transition-delay: 1s;
}
.main:hover {
  opacity: 0.975;
  transition-delay: 0s;
}
.main .control {
  position: relative;
  width: 200px;
  height: 200px;
  background: #940000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  color: #f6f6f6;
  font-size: 100px;
  line-height: 200px;
  font-family: FontAwesome;
}
.main .control::after {
  content: "";
  position: relative;
  left: 8px;
}
.main .control.playing::after {
  content: "";
  left: 0;
}
.main .control.loading::after {
  display: block;
  content: "";
  left: 0;
  -webkit-animation: spin linear 1s infinite;
          animation: spin linear 1s infinite;
}
.main .balls {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-animation: spin linear 5s infinite;
          animation: spin linear 5s infinite;
}
.main .balls .ball {
  position: absolute;
  top: 100px;
  left: 285px;
  width: 30px;
  height: 30px;
  transform-origin: 15px 200px;
}
.main .balls .ball .drop {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #940000;
  border: none;
  transform: translateY(100px);
}
.main .balls .ball:nth-child(1) {
  transform: rotate(0deg);
}
.main .balls .ball:nth-child(2) {
  transform: rotate(30deg);
}
.main .balls .ball:nth-child(3) {
  transform: rotate(60deg);
}
.main .balls .ball:nth-child(4) {
  transform: rotate(90deg);
}
.main .balls .ball:nth-child(5) {
  transform: rotate(120deg);
}
.main .balls .ball:nth-child(6) {
  transform: rotate(150deg);
}
.main .balls .ball:nth-child(7) {
  transform: rotate(180deg);
}
.main .balls .ball:nth-child(8) {
  transform: rotate(210deg);
}
.main .balls .ball:nth-child(9) {
  transform: rotate(240deg);
}
.main .balls .ball:nth-child(10) {
  transform: rotate(270deg);
}
.main .balls .ball:nth-child(11) {
  transform: rotate(300deg);
}
.main .balls .ball:nth-child(12) {
  transform: rotate(330deg);
}

.cover::before, .cover::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  background: url("/img/meatboy.png");
  background-position: center center;
  background-repeat: no-repeat;
}
.cover::before {
  background-size: cover;
  filter: blur(25px);
}
.cover::after {
  background-size: contain;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}