@keyframes bauble {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.winter {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: transparent;
  z-index: 9999;
}
.winter, .winter > * {
  pointer-events: none;
}
.winter .flake {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: transparent url("/files/assets/winter/snow.svg") center center no-repeat;
  background-size: contain;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.5));
}
.winter .bauble {
  display: none;
  position: absolute;
  top: -5px;
  left: 30px;
  width: 200px;
  height: 300px;
  background: transparent url("/files/assets/winter/bauble.png") center center no-repeat;
  background-size: contain;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.5));
  transform-origin: top center;
  animation: infinite 5s bauble;
}
@media screen and (min-width: 1840px) {
  .winter .bauble {
    display: block;
  }
}

.copyright {
  position: relative;
  background: #000000 url("/files/assets/winter/hills.png") bottom center no-repeat !important;
  background-size: 100% 60% !important;
}
.copyright > .content-block {
  background: transparent !important;
}
.copyright p {
  background: transparent;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}
.copyright .tree {
  display: none;
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 300px;
  height: 300px;
  background: transparent url("/files/assets/winter/tree.png") center bottom no-repeat;
  background-size: contain;
  z-index: 9998;
  pointer-events: none;
}
@media screen and (min-width: 1840px) {
  .copyright .tree {
    display: block;
  }
}
