@font-face {
  font-family: 'MountainsOfChristmas';
  src: url('/assets/fonts/MountainsofChristmas-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/*
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}
body {
  /*background: #111;
  overflow: hidden;
}
*/

/***************************

BEGIN OF FLYING SANTA

***************************/
.santa {
  width:20vw;
  min-width:175px;
  /*z-index: 600;*/
  cursor: pointer;
  -webkit-animation: FlyingSanta 38s infinite linear;
  -moz-animation: FlyingSanta 38s infinite linear;
  -ms-animation: FlyingSanta 38s infinite linear;
  -o-animation: FlyingSanta 38s infinite linear;
  animation: FlyingSanta 38s infinite linear;
  bottom: 0%;
  left: 0%;
  position: absolute;
}
@keyframes FlyingSanta {
  25% {
    bottom: 80%;
    left: 55%;
    transform: rotateY(0deg);
  }
  26% {
    transform: rotateY(180deg);
  }
  50% {
    bottom: 60%;
    left: 0%;
    transform: rotateY(180deg);
  }
  51% {
    transform: rotateY(0deg);
  }
  75% {
    bottom: 40%;
    left: 55%;
    transform: rotateY(0deg);
  }
  76% {
    bottom: 40%;
    left: 55%;
    transform: rotateY(180deg);
  }
  99% {
    transform: rotateY(180deg);
  }
}

/***************************

//// END OF FLYING SANTA ///

***************************/

.Pennewang {
  /*z-index: 500;*/
  width: 10vw;
  min-width:180px;
}
.floating {
  -webkit-animation-name: Floating;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
}

@-webkit-keyframes Floating {
  from {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 30px);
  }
  to {
    transform: translate(0, -0px);
  }
}



/***************************

Clip Text for Festive Sparkles

***************************/

.slogan {
  font-size: 5vw;
  padding-top: 60px;;
  font-family: "Mountains of Christmas", cursive;
  background: -o-linear-gradient(transparent, transparent) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin: 0;
  padding: 150px;
  position: absolute;
  /*top:150px;*/
  font-weight: 900;
  
  text-align: center;
  letter-spacing: 1px;
  /*z-index: 200;
  -webkit-background-clip: text;*/
}

.Absolute-Center {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/***************************
****************************
Text Glitter Styles
****************************
***************************/
.Gold-Glitter {
  color: gold;
  background: -webkit-linear-gradient(transparent, transparent),
    url("/img/gold_glitt1er.gif")
      repeat;
}
.Blue-Glitter {
  color: blue;
  background: -webkit-linear-gradient(transparent, transparent),
    url("/img/sparklesskyblue.gif")
      repeat;
}
.HotPink-Glitter {
  color: blue;
  background: -webkit-linear-gradient(transparent, transparent),
    url("/img/sparkleshotpink.gif")
      repeat;
}
.Pink-Glitter {
  color: pink;
  background: -webkit-linear-gradient(transparent, transparent),
    url("/img/pink_glitter.gif")
      repeat;
}
.Green-Glitter {
  color: green;
  background: -webkit-linear-gradient(transparent, transparent),
    url("/img/green_glitter.gif")
      repeat;
}
/*
#snow {
  background: none;
  z-index: 200;
  background-image: url("/img/flake1.png"),
    url("/img/flake2.png"),
    url("/img/flake3.png");
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-animation: snow 10s linear infinite;
  -moz-animation: snow 10s linear infinite;
  -ms-animation: snow 10s linear infinite;
  animation: snow 10s linear infinite;
}
@keyframes snow {
  0% {
    background-position: 0px 0px, 0px 0px, 0px 0px;
  }
  50% {
    background-position: 500px 500px, 100px 200px, -100px 150px;
  }
  100% {
    background-position: 500px 1000px, 200px 400px, -100px 300px;
  }
}
@-moz-keyframes snow {
  0% {
    background-position: 0px 0px, 0px 0px, 0px 0px;
  }
  50% {
    background-position: 500px 500px, 100px 200px, -100px 150px;
  }
  100% {
    background-position: 400px 1000px, 200px 400px, 100px 300px;
  }
}
@-webkit-keyframes snow {
  0% {
    background-position: 0px 0px, 0px 0px, 0px 0px;
  }
  50% {
    background-position: 500px 500px, 100px 200px, -100px 150px;
  }
  100% {
    background-position: 500px 1000px, 200px 400px, -100px 300px;
  }
}
@-ms-keyframes snow {
  0% {
    background-position: 0px 0px, 0px 0px, 0px 0px;
  }
  50% {
    background-position: 500px 500px, 100px 200px, -100px 150px;
  }
  100% {
    background-position: 500px 1000px, 200px 400px, -100px 300px;
  }
}
*/