:root {
  --x-offset: 50px;
  --y-offset: 25px;
  --animation-duration: 3s;
  --fade-in-delay: 1.5s;
  --x11-offset: 40px;
  --x12-offset: 45px;
  --x13-offset: 50px;
  --x14-offset: 65px;
  --x15-offset: 60px;
  --y11-offset: 28px;
  --y12-offset: 30px;
  --y13-offset: 32px;
  --y14-offset: 34px;
  --y15-offset: 36px;
  --x2-offset: 20px;
  --y2-offset: 10px;
  --animation2-duration: 3s;
  --fade2-in-delay: 1.5s;
  --x21-offset: 10px;
  --x22-offset: 20px;
  --x23-offset: 30px;
  --x24-offset: 40px;
  --x25-offset: 50px;
  --y21-offset: 10px;
  --y22-offset: 15px;
  --y23-offset: 20px;
  --y24-offset: 25px;
  --y25-offset: 30px;
}

@keyframes fadeIn {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes reset {
  to {
    transform: translateX(0) translateY(0);
  }
}
@keyframes horizontal {
  from {
    transform: translateX(calc(-1 * var(--x-offset)));
  }
  to {
    transform: translateX(var(--x-offset));
  }
}
@keyframes vertical {
  from {
    transform: translateY(calc(-1 * var(--y-offset)));
  }
  to {
    transform: translateY(var(--y-offset));
  }
}
@keyframes horizontal2 {
  from {
    transform: translateX(calc(-1 * var(--x2-offset)));
  }
  to {
    transform: translateX(var(--x2-offset));
  }
}
@keyframes vertical2 {
  from {
    transform: translateY(calc(-1 * var(--y2-offset)));
  }
  to {
    transform: translateY(var(--y2-offset));
  }
}
@keyframes horizontal11 {
  from {
    transform: translateX(calc(-1 * var(--x11-offset)));
  }
  to {
    transform: translateX(var(--x11-offset));
  }
}
@keyframes horizontal12 {
  from {
    transform: translateX(calc(-1 * var(--x12-offset)));
  }
  to {
    transform: translateX(var(--x12-offset));
  }
}
@keyframes horizontal13 {
  from {
    transform: translateX(calc(-1 * var(--x13-offset)));
  }
  to {
    transform: translateX(var(--x13-offset));
  }
}
@keyframes horizontal14 {
  from {
    transform: translateX(calc(-1 * var(--x14-offset)));
  }
  to {
    transform: translateX(var(--x14-offset));
  }
}
@keyframes horizontal15 {
  from {
    transform: translateX(calc(-1 * var(--x15-offset)));
  }
  to {
    transform: translateX(var(--x15-offset));
  }
}
@keyframes vertical11 {
  from {
    transform: translateY(calc(-1 * var(--y11-offset)));
  }
  to {
    transform: translateY(var(--y11-offset));
  }
}
@keyframes vertical12 {
  from {
    transform: translateY(calc(-1 * var(--y12-offset)));
  }
  to {
    transform: translateY(var(--y12-offset));
  }
}
@keyframes vertical13 {
  from {
    transform: translateY(calc(-1 * var(--y13-offset)));
  }
  to {
    transform: translateY(var(--y13-offset));
  }
}
@keyframes vertical14 {
  from {
    transform: translateY(calc(-1 * var(--y14-offset)));
  }
  to {
    transform: translateY(var(--y14-offset));
  }
}
@keyframes vertical15 {
  from {
    transform: translateY(calc(-1 * var(--y15-offset)));
  }
  to {
    transform: translateY(var(--y15-offset));
  }
}
@keyframes horizontal21 {
  from {
    transform: translateX(calc(-1 * var(--x21-offset)));
  }
  to {
    transform: translateX(var(--x21-offset));
  }
}
@keyframes horizontal22 {
  from {
    transform: translateX(calc(-1 * var(--x22-offset)));
  }
  to {
    transform: translateX(var(--x22-offset));
  }
}
@keyframes horizontal23 {
  from {
    transform: translateX(calc(-1 * var(--x23-offset)));
  }
  to {
    transform: translateX(var(--x23-offset));
  }
}
@keyframes horizontal24 {
  from {
    transform: translateX(calc(-1 * var(--x24-offset)));
  }
  to {
    transform: translateX(var(--x24-offset));
  }
}
@keyframes horizontal25 {
  from {
    transform: translateX(calc(-1 * var(--x25-offset)));
  }
  to {
    transform: translateX(var(--x25-offset));
  }
}
@keyframes vertical21 {
  from {
    transform: translateY(calc(-1 * var(--y21-offset)));
  }
  to {
    transform: translateY(var(--y21-offset));
  }
}
@keyframes vertical22 {
  from {
    transform: translateY(calc(-1 * var(--y22-offset)));
  }
  to {
    transform: translateY(var(--y22-offset));
  }
}
@keyframes vertical23 {
  from {
    transform: translateY(calc(-1 * var(--y23-offset)));
  }
  to {
    transform: translateY(var(--y23-offset));
  }
}
@keyframes vertical24 {
  from {
    transform: translateY(calc(-1 * var(--y24-offset)));
  }
  to {
    transform: translateY(var(--y24-offset));
  }
}
@keyframes vertical25 {
  from {
    transform: translateY(calc(-1 * var(--y25-offset)));
  }
  to {
    transform: translateY(var(--y25-offset));
  }
}
.animation.container .x {
  --name: horizontal;
  --duration: var(--animation-duration);
  --delay: calc(-0.25 * var(--animation-duration));
}
.animation.container .y {
  --name: vertical;
  --duration: calc(0.5 * var(--animation-duration));
  --delay: 0s;
}
.animation.container .x, .animation.container .y {
  --animation: var(--duration) ease-in-out var(--delay) alternate infinite var(--name);
}
.animation.container .x2 {
  --name2: horizontal2;
  --duration2: var(--animation2-duration);
  --delay2: calc(-0.25 * var(--animation2-duration));
}
.animation.container .y2 {
  --name2: vertical2;
  --duration2: calc(0.5 * var(--animation2-duration));
  --delay2: 0s;
}
.animation.container .x2, .animation.container .y2 {
  --animation2: var(--duration2) ease-in-out var(--delay2) alternate infinite var(--name2);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0 0 35px;
  text-align: center;
  overflow-x: hidden;
  font: normal 20px Raleway, Helvetica, Aerial, sans-serif;
  font-style: italic;
  color: #fff;
  background-color: #4771b9;
  min-width: 1020px;
}

h1, h2, h3 {
  font-family: "Lobster Two", Helvetica, Aerial, sans-serif;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

#nowplaying {
  width: 100%;
  overflow: hidden;
  background-color: #9f18f2;
  background: linear-gradient(to bottom, #9f18f2 0%, #cc94ef 100%);
  color: #fff;
  border-bottom: 35px solid #fbfbfb;
  position: relative;
}
#nowplaying .lastfm-playing {
  width: 400vw;
  transform: translateX(0vw);
  transition: transform 0.4s ease-in-out;
}
#nowplaying figure, #nowplaying figcaption {
  display: inline-block;
  margin: 1px 20px 1px 0;
  vertical-align: middle;
  cursor: pointer;
}
#nowplaying figure img, #nowplaying figcaption img {
  width: 65px;
  height: auto;
}
#nowplaying figure {
  font-size: 14px;
}
#nowplaying div.playing {
  width: 100vw;
  float: left;
  text-align: center;
  margin: 1px 5px 1px;
  padding: 25px 10px;
  color: #322f26;
  min-height: 75px;
}
#nowplaying div.playing h6, #nowplaying div.playing p {
  color: #fff;
  display: inline-block;
  margin: 0 15px 0 0;
}
#nowplaying div.playing h6 {
  font-size: 28px;
}
#nowplaying div.playing p {
  font-size: 24px;
}
#nowplaying div.playing a {
  color: #e33e2a;
}
#nowplaying .navigation {
  list-style: none;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
#nowplaying .navigation a {
  color: #f21886;
  font-size: 42px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
}
#nowplaying .navigation .left, #nowplaying .navigation .right {
  list-style: none;
  position: absolute;
  top: -12px;
}
#nowplaying .navigation .left {
  left: 15px;
}
#nowplaying .navigation .right {
  right: 15px;
}
#nowplaying p.total {
  color: #fff;
  font-size: 22px;
  position: absolute;
  bottom: -4px;
  right: 15px;
}

#nowplaying-popup {
  position: absolute;
  position: fixed;
  bottom: -365px;
  right: -550px;
  width: 500px;
  height: 315px;
  background-color: #ccc;
  padding: 10px;
  z-index: 50;
  transform: scale(0.1);
  transition: all 0.5s ease-in-out;
}
#nowplaying-popup.playing {
  bottom: 20px;
  right: 20px;
  transform: scale(1);
}
#nowplaying-popup iframe {
  width: 100%;
  height: 100%;
}
#nowplaying-popup .close {
  background-color: #990000;
  color: #fff;
  font-weight: bold;
  border: 0;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 50px;
  cursor: pointer;
}

.logo, #word, img.title, img.top {
  animation: 1s fadeIn;
}

.logo {
  font-size: 84px;
  font-weight: 500;
  margin: 10px 0 20px;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.15);
}

/*#word {
    background-color: #DDD;
    display: inline-block;
    margin-top: 0;
    padding: 10px 25px;
    border-radius: 8px;
    color: #1C1C1C;
    box-shadow: 5px 3px 3px rgba(0, 0, 0, 0.15);
}
#word q {
    font-style: normal;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; 
}*/
#YT {
  width: 100vw;
  height: 56vw;
}

.animation.container {
  display: flex;
  align-content: center;
  background-color: #fbfbfb;
  background: #fbfbfb url("../img/bg_bg.jpg") 0 118px repeat-x;
  position: relative;
}
.animation.container .bottom.bg {
  content: "";
  background-color: #4771b9;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 259px;
}
.animation.container .inner {
  width: 1000px;
  max-width: 100%;
  display: inline-block;
  margin: 0 auto;
  position: relative;
}
.animation.container .inner div.bg {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin-top: -60px;
}
.animation.container .inner img.title {
  position: absolute;
  top: 50px;
  left: 267px;
  z-index: 10;
}
.animation.container .inner .x {
  position: absolute;
  top: 205px;
  left: 85px;
  z-index: 10;
  opacity: 0;
}
.animation.container .inner .x, .animation.container .inner .y {
  animation: var(--animation);
}
.animation.container .inner .reset {
  animation-name: reset !important;
}
.animation.container .inner .dude1, .animation.container .inner .dude2, .animation.container .inner .dude3, .animation.container .inner .dude4, .animation.container .inner .dude5 {
  position: absolute;
  animation: var(--animation2);
}
.animation.container .inner .dude1.x2, .animation.container .inner .dude2.x2, .animation.container .inner .dude3.x2, .animation.container .inner .dude4.x2, .animation.container .inner .dude5.x2 {
  opacity: 0;
}
.animation.container .inner .dude1 .y2, .animation.container .inner .dude2 .y2, .animation.container .inner .dude3 .y2, .animation.container .inner .dude4 .y2, .animation.container .inner .dude5 .y2 {
  animation: var(--animation2);
}
.animation.container .inner .dude1 {
  bottom: 115px;
  left: 2px;
}
.animation.container .inner .dude2 {
  bottom: 295px;
  left: 180px;
}
.animation.container .inner .dude3 {
  bottom: 205px;
  right: 195px;
}
.animation.container .inner .dude4 {
  bottom: 420px;
  right: 130px;
}
.animation.container .inner .dude5 {
  bottom: 250px;
  right: 10px;
}
.animation.container img.bg {
  visibility: hidden;
}
.animation.container img.top {
  margin-bottom: 5px;
  position: relative;
  z-index: 10;
}

@media screen and (min-device-width: 800px) {
  #nowplaying div.playing {
    padding: 10px;
  }
  #nowplaying div.playing figure {
    font-size: 9px;
  }
  #nowplaying div.playing h6 {
    font-size: 18px;
  }
  #nowplaying div.playing p {
    font-size: 17px;
  }
  #nowplaying .navigation a {
    font-size: 34px;
  }
  #nowplaying p.total {
    font-size: 17px;
  }

  #nowplaying-popup {
    width: 400px;
    height: 250px;
  }
  #nowplaying-popup .close {
    font-size: 20px;
  }

  .logo {
    font-size: 48px;
  }

  #YT {
    height: calc(100vh - 165px);
  }
}

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