@font-face {
	font-family: 'Durwent';
	src: url('../fonts/Durwent.woff') format('woff');
}
@font-face {
	font-family: 'Calibri-Bold';
	src: url('../fonts/Calibri-Bold.woff') format('woff');
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #000;
	box-shadow: inset 0 0 100px #000;
	transition: all 0.5s ease-in-out;
	animation: fadeInAnimation ease 5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#music {
	display: none;
}

.play-pause {
	position: absolute;
	top: 25px;
	left: 25px;
}

.wrapper {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #000;
	box-shadow: inset 0 0 100px #000;
	animation-name: colour-change;
	animation-duration: 2s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-delay: 29s;
}

@keyframes colour-change {
	from { background-color: #000; }
    to   { background-color: darkred; }
}

.greeting_text {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-family: 'Durwent', serif;
	font-size: 200%;
	line-height: 50%;
	color: #fff;
	text-align: center;
	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */}

.text1, .text2, .text3, .text4, .text5 {
	display: inline-block;
}

.text1 {
	animation-name: fade-in;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: backwards;
	animation-delay: 31s;
}

.text2 {
	animation-name: fade-in;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: backwards;
	animation-delay: 31.5s;
}

.text3 {
	animation-name: fade-in;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: backwards;
	animation-delay: 32s;
}

.text4 {
	animation-name: fade-in;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: backwards;
	animation-delay: 33s;
}

.neon-glow {
	color: #fff;
	text-shadow:
	0 0 7px #fff,
	0 0 10px #fff,
	0 0 21px #fff;
}

.holly1 {
	position: absolute;
	top: 20%;
	left: 5%;
	width: 25%;
	height: 25%;
	background-image: url('../images/holly1.svg');
	background-size: contain;
	background-repeat: no-repeat;
	animation-name: fade-in;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: backwards;
	animation-delay: 34s;
}

.holly2 {
	position: absolute;
	top: 20%;
	right: -5%;
	width: 25%;
	height: 25%;
	background-image: url('../images/holly2.svg');
	background-size: contain;
	background-repeat: no-repeat;
	animation-name: fade-in;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: backwards;
	animation-delay: 34s;
}

.replay {
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-80%, -50%);
	animation-name: fade-in;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: backwards;
	animation-delay: 38s;
}

@keyframes display {
	from { display: none; }
    to   { display: block; }
}

.scene_wrapper {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-image: linear-gradient(#000 0%, #19343e 25%, #2f6476 100%);
	box-shadow: inset 0 0 100px #000;
	animation-name: fade-in;
	animation-duration: 2s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-delay: 2s;
}

@keyframes fade-in {
	from { opacity: 0; }
    to   { opacity: 1; }
}

.scene_wrapper {
	-webkit-animation: zoom 5s, slideWrapper 10s;
	-moz-animation: zoom 5s, slideWrapper 10s;
	animation: zoom 5s, slideWrapper 10s;
	animation-delay: 25s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
@keyframes zoom {
	100% {
		transform: scale(5);
  }
}
@keyframes slideWrapper {
	100% {
		transform: translateY(2000px);
		opacity: 0;
  }
}

.snow_front {
	opacity: 0;
	width: 100%;
	height: 250px;
	position: absolute;
	left: 1000px;
	bottom: 0;
	background-image: url('../images/snow_front.svg');
	background-size: cover;
	-webkit-animation: slideLeft 2s forwards;
	-moz-animation: slideLeft 2s forwards;
	animation: slideLeft 2s forwards;
	animation-delay: 3s;
	z-index: 100;
}

@-webkit-keyframes slideLeft {
  0% {
    transform: translateX(1000px);
	opacity: 0;
  }
  100% {
	opacity: 1;
	transform: translateX(-1000px);
  }
}
@-moz-keyframes slideLeft {
  0% {
    transform: translateX(1000px);
	opacity: 0;
  }
  100% {
  	opacity: 1;
    transform: translateX(-1000px);
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(1000px);
	opacity: 0;
  }
  100% {
  	opacity: 1;
    transform: translateX(-1000px);
  }
}

.snow_mid {
	opacity: 0;
	width: 100%;
	height: 300px;
	position: absolute;
	bottom: 25px;
	background-image: url('../images/snow_mid.svg');
	background-size: cover;
	-webkit-animation: slideDown 2s forwards;
	-moz-animation: slideDown 2s forwards;
	animation: slideDown 2s forwards;
	animation-delay: 3s;
	z-index: 50;
}

@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-1000px);
	opacity: 0;
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}
@-moz-keyframes slideDown {
  0% {
    transform: translateY(-1000px);
	opacity: 0;
  }
  100% {
  	opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-1000px);
	opacity: 0;
  }
  100% {
  	opacity: 1;
    transform: translateY(50px);
  }
}

.snow_back {
	opacity: 0;
	width: 100%;
	height: 300px;
	position: absolute;
	bottom: 25px;
	background-image: url('../images/snow_back.svg');
	background-size: cover;
	-webkit-animation: rotateInDownLeft 2s forwards;
	-moz-animation: rotateInDownLeft 2s forwards;
	animation: rotateInDownLeft 2s forwards;
	animation-delay: 3s;
	z-index: 25;
}

@-webkit-keyframes rotateInDownLeft {
	0% {
	   -webkit-transform-origin: left bottom;
	   -webkit-transform: rotate(-90deg);
	   opacity: 0;
	}
	100% {
	   -webkit-transform-origin: left bottom;
	   -webkit-transform: rotate(0);
	   opacity: 1;
	}
 }
 
@keyframes rotateInDownLeft {
	0% {
	   transform-origin: left bottom;
	   transform: rotate(-90deg);
	   opacity: 0;
	}
	100% {
	   transform-origin: left bottom;
	   transform: rotate(0);
	   opacity: 1; 
	}
 }
		 
.moon {
	opacity: 0;	
	width: 100px;
	height: 100px;
	position: absolute;
	top: 25px;
	right: 25px;
	background-image: url('../images/moon.svg');
	background-size: contain;
	background-repeat: no-repeat;
	-webkit-animation: popout 0.75s forwards;
	-moz-animation: popout 0.75s forwards;
	animation: popout 0.75s ease forwards;
	animation-delay: 5s;
	z-index: 150;
}

.star1 {
	opacity: 0;	
	width: 100px;
	height: 100px;
	position: absolute;
	top: 15%;
	left: 50%;
	background-image: url('../images/star1.svg');
	background-size: contain;
	background-repeat: no-repeat;
	-webkit-animation: popout 0.75s ease forwards, pulse 1s ease-in-out infinite;
	-moz-animation: popout 0.75s ease forwards, pulse 1s ease-in-out infinite;
	animation: popout 0.75s ease forwards, pulse 1s ease-in-out infinite;
	animation-delay: 19s;
	z-index: 150;
}

@keyframes popout {
	0% {
	   transform: scale(0);
	   opacity: 0;
	}
	50% {
	   transform: scale(1.2);
	   opacity: 1;
	}
	100% {
	   transform: scale(1);
	   opacity: 1; 
	}
 }
 
 @keyframes pulse {
    0% {
        transform: scale(0.85);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.85);
    }
}
 
 .tree1 {
	opacity: 0;
	height: 200px;
	width: 100px;
	position: absolute;
	bottom: 300px;
	right: 200px;
	background-image: url('../images/tree1.svg');
	background-size: cover;
	-webkit-animation: slideDown 1.5s forwards;
	-moz-animation: slideDown 1.5s forwards;
	animation: slideDown 1.5s forwards;
	animation-delay: 5s;
	z-index: 75;
}

@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-1000px);
	opacity: 0;
  }
  100% {
	opacity: 1;
	transform: translateY(50px);
  }
}
@-moz-keyframes slideDown {
  0% {
    transform: translateY(-1000px);
	opacity: 0;
  }
  100% {
  	opacity: 1;
    transform: translateY(50px);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-1000px);
	opacity: 0;
  }
  100% {
  	opacity: 1;
    transform: translateY(50px);
  }
}

.tree2 {
	opacity: 0;
	width: 250px;
	height: 400px;
	position: absolute;
	bottom: 200px;
	left: 100px;
	background-image: url('../images/tree2.svg');
	background-size: cover;
	-webkit-animation: slideDown 1.5s forwards;
	-moz-animation: slideDown 1.5s forwards;
	animation: slideDown 1.5s forwards;
	animation-delay: 5.5s;
	z-index: 75;
}

@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-1000px);
	opacity: 0;
  }
  100% {
	opacity: 1;
	transform: translateY(100px);
  }
}
@-moz-keyframes slideDown {
  0% {
    transform: translateY(-1000px);
	opacity: 0;
  }
  100% {
  	opacity: 1;
    transform: translateY(100px);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-1000px);
	opacity: 0;
  }
  100% {
  	opacity: 1;
    transform: translateY(100px);
  }
}

.house {
	opacity: 0;
	width: 300px;
	height: 300px;
	position: absolute;
	bottom: 50px;
	left: 35%;
	background-image: url('../images/house.svg');
	background-size: contain;
	background-repeat: no-repeat;
	-webkit-animation: popout 1s forwards;
	-moz-animation: popout 1s forwards;
	animation: popout 1s ease forwards;
	animation-delay: 7s;
	z-index: 75;
}

.plane_wrapper {
	position: fixed;
	top: 125px;
	right: -2000px;
	background-size: cover;-webkit-animation: flyLeft 15s forwards;
	-moz-animation: flyLeft 15s forwards;
	animation: flyLeft 15s forwards;
	animation-delay: 10s;
}

.plane {
	width: 300px;
	height: 40px;
	background-image: url('../images/plane.svg');
	background-size: contain;
	background-repeat: no-repeat;
}
@keyframes flyLeft {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-4000px);
  }
}

/* Snowfall */
.snowflake {
  --size: 1vw;
  width: var(--size);
  height: var(--size);
  background: white;
  border-radius: 50%;
  position: absolute;
  top: -5vh;
  z-index: 9999;
}

@keyframes snowfall {
  0% {
    transform: translate3d(var(--left-ini), 0, 0);
  }
  100% {
    transform: translate3d(var(--left-end), 150vh, 0);
  }
}
.snowflake:nth-child(1) {
  --size: 0.8vw;
  --left-ini: 2vw;
  --left-end: -5vw;
  left: 21vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -9s;
}

.snowflake:nth-child(2) {
  --size: 0.4vw;
  --left-ini: 5vw;
  --left-end: -3vw;
  left: 68vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -6s;
}

.snowflake:nth-child(3) {
  --size: 0.4vw;
  --left-ini: -8vw;
  --left-end: 3vw;
  left: 34vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(4) {
  --size: 0.6vw;
  --left-ini: -2vw;
  --left-end: 1vw;
  left: 89vw;
  animation: snowfall 9s linear infinite;
  animation-delay: -1s;
}

.snowflake:nth-child(5) {
  --size: 0.2vw;
  --left-ini: -5vw;
  --left-end: -3vw;
  left: 23vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -3s;
}

.snowflake:nth-child(6) {
  --size: 0.6vw;
  --left-ini: 2vw;
  --left-end: -3vw;
  left: 25vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -4s;
}

.snowflake:nth-child(7) {
  --size: 0.8vw;
  --left-ini: -6vw;
  --left-end: -3vw;
  left: 15vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -3s;
}

.snowflake:nth-child(8) {
  --size: 0.4vw;
  --left-ini: 6vw;
  --left-end: -4vw;
  left: 61vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -4s;
}

.snowflake:nth-child(9) {
  --size: 0.8vw;
  --left-ini: -4vw;
  --left-end: 4vw;
  left: 50vw;
  animation: snowfall 10s linear infinite;
  animation-delay: -2s;
}

.snowflake:nth-child(10) {
  --size: 1vw;
  --left-ini: -5vw;
  --left-end: -7vw;
  left: 40vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -8s;
}

.snowflake:nth-child(11) {
  --size: 0.4vw;
  --left-ini: -4vw;
  --left-end: 8vw;
  left: 32vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -5s;
}

.snowflake:nth-child(12) {
  --size: 0.6vw;
  --left-ini: 7vw;
  --left-end: -4vw;
  left: 46vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -3s;
}

.snowflake:nth-child(13) {
  --size: 0.6vw;
  --left-ini: -2vw;
  --left-end: 6vw;
  left: 56vw;
  animation: snowfall 10s linear infinite;
  animation-delay: -3s;
}

.snowflake:nth-child(14) {
  --size: 0.8vw;
  --left-ini: -7vw;
  --left-end: 5vw;
  left: 37vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -9s;
}

.snowflake:nth-child(15) {
  --size: 1vw;
  --left-ini: 0vw;
  --left-end: -1vw;
  left: 36vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -5s;
}

.snowflake:nth-child(16) {
  --size: 0.4vw;
  --left-ini: 5vw;
  --left-end: -2vw;
  left: 27vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -1s;
}

.snowflake:nth-child(17) {
  --size: 0.6vw;
  --left-ini: 10vw;
  --left-end: -3vw;
  left: 98vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -9s;
}

.snowflake:nth-child(18) {
  --size: 0.6vw;
  --left-ini: 9vw;
  --left-end: 5vw;
  left: 16vw;
  animation: snowfall 6s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(19) {
  --size: 0.4vw;
  --left-ini: -8vw;
  --left-end: 5vw;
  left: 46vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -5s;
}

.snowflake:nth-child(20) {
  --size: 0.2vw;
  --left-ini: 9vw;
  --left-end: -8vw;
  left: 36vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -9s;
}

.snowflake:nth-child(21) {
  --size: 0.6vw;
  --left-ini: 7vw;
  --left-end: 9vw;
  left: 37vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -9s;
}

.snowflake:nth-child(22) {
  --size: 0.8vw;
  --left-ini: -9vw;
  --left-end: 3vw;
  left: 49vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -2s;
}

.snowflake:nth-child(23) {
  --size: 0.2vw;
  --left-ini: -5vw;
  --left-end: -8vw;
  left: 26vw;
  animation: snowfall 9s linear infinite;
  animation-delay: -8s;
}

.snowflake:nth-child(24) {
  --size: 0.2vw;
  --left-ini: 0vw;
  --left-end: -5vw;
  left: 32vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -2s;
}

.snowflake:nth-child(25) {
  --size: 0.8vw;
  --left-ini: 9vw;
  --left-end: 10vw;
  left: 33vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -3s;
}

.snowflake:nth-child(26) {
  --size: 0.8vw;
  --left-ini: 1vw;
  --left-end: 4vw;
  left: 49vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -2s;
}

.snowflake:nth-child(27) {
  --size: 1vw;
  --left-ini: 7vw;
  --left-end: 7vw;
  left: 59vw;
  animation: snowfall 10s linear infinite;
  animation-delay: -4s;
}

.snowflake:nth-child(28) {
  --size: 0.8vw;
  --left-ini: 5vw;
  --left-end: 3vw;
  left: 4vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -8s;
}

.snowflake:nth-child(29) {
  --size: 0.4vw;
  --left-ini: -6vw;
  --left-end: -2vw;
  left: 70vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -4s;
}

.snowflake:nth-child(30) {
  --size: 0.8vw;
  --left-ini: 7vw;
  --left-end: 8vw;
  left: 27vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -10s;
}

.snowflake:nth-child(31) {
  --size: 0.2vw;
  --left-ini: 10vw;
  --left-end: -8vw;
  left: 20vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -8s;
}

.snowflake:nth-child(32) {
  --size: 0.6vw;
  --left-ini: -1vw;
  --left-end: 7vw;
  left: 37vw;
  animation: snowfall 10s linear infinite;
  animation-delay: -9s;
}

.snowflake:nth-child(33) {
  --size: 0.2vw;
  --left-ini: -4vw;
  --left-end: 8vw;
  left: 34vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -10s;
}

.snowflake:nth-child(34) {
  --size: 0.6vw;
  --left-ini: -9vw;
  --left-end: 6vw;
  left: 40vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -6s;
}

.snowflake:nth-child(35) {
  --size: 1vw;
  --left-ini: 1vw;
  --left-end: 7vw;
  left: 91vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -2s;
}

.snowflake:nth-child(36) {
  --size: 0.6vw;
  --left-ini: -9vw;
  --left-end: 8vw;
  left: 65vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -9s;
}

.snowflake:nth-child(37) {
  --size: 0.2vw;
  --left-ini: 0vw;
  --left-end: 2vw;
  left: 84vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(38) {
  --size: 0.6vw;
  --left-ini: 0vw;
  --left-end: -5vw;
  left: 17vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -8s;
}

.snowflake:nth-child(39) {
  --size: 1vw;
  --left-ini: 2vw;
  --left-end: 3vw;
  left: 94vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(40) {
  --size: 0.2vw;
  --left-ini: 2vw;
  --left-end: -8vw;
  left: 9vw;
  animation: snowfall 10s linear infinite;
  animation-delay: -8s;
}

.snowflake:nth-child(41) {
  --size: 0.4vw;
  --left-ini: 3vw;
  --left-end: -5vw;
  left: 4vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -10s;
}

.snowflake:nth-child(42) {
  --size: 0.6vw;
  --left-ini: 4vw;
  --left-end: -3vw;
  left: 60vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -2s;
}

.snowflake:nth-child(43) {
  --size: 0.8vw;
  --left-ini: -5vw;
  --left-end: 2vw;
  left: 89vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(44) {
  --size: 0.8vw;
  --left-ini: 0vw;
  --left-end: -5vw;
  left: 66vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -1s;
}

.snowflake:nth-child(45) {
  --size: 0.8vw;
  --left-ini: 10vw;
  --left-end: 9vw;
  left: 13vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -8s;
}

.snowflake:nth-child(46) {
  --size: 1vw;
  --left-ini: -9vw;
  --left-end: -5vw;
  left: 93vw;
  animation: snowfall 10s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(47) {
  --size: 1vw;
  --left-ini: -4vw;
  --left-end: -4vw;
  left: 12vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -8s;
}

.snowflake:nth-child(48) {
  --size: 0.2vw;
  --left-ini: -6vw;
  --left-end: 4vw;
  left: 89vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -3s;
}

.snowflake:nth-child(49) {
  --size: 0.6vw;
  --left-ini: 7vw;
  --left-end: 7vw;
  left: 52vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -5s;
}

.snowflake:nth-child(50) {
  --size: 1vw;
  --left-ini: -6vw;
  --left-end: 3vw;
  left: 15vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(51) {
  --size: 1vw;
  --left-ini: -6vw;
  --left-end: 3vw;
  left: 15vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(52) {
  --size: 1vw;
  --left-ini: -6vw;
  --left-end: 3vw;
  left: 15vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(53) {
  --size: 1vw;
  --left-ini: -6vw;
  --left-end: 3vw;
  left: 15vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(54) {
  --size: 1vw;
  --left-ini: -6vw;
  --left-end: 3vw;
  left: 15vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(55) {
  --size: 1vw;
  --left-ini: -6vw;
  --left-end: 3vw;
  left: 15vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -7s;
}

/* added small blur every 6 snowflakes*/
.snowflake:nth-child(6n) {
  filter: blur(1px);
}

.snowman *{
  position: absolute;
}
.snowman {
  position: relative;
  margin: auto;
  display: block;
  margin: 25% 65%;
  width: 200px;
  height: 200px;  
}  
.bottom {
  top: 88%;
	left: -7%;
	background: white;
	width: 120%;
	height: 120%;
	border-radius: 50%;
	-webkit-animation: popout 0.75s backwards;
	-moz-animation: popout 0.75s backwards;
	animation: popout 0.75s ease backwards;
	animation-delay: 8s;
	z-index: 150;
}  
.head {
  top: 15%;
	left: 5%;
	background: white;
	width: 88%;
	height: 88%;
	border-radius: 50%;
	-webkit-animation: popout 0.75s backwards;
	-moz-animation: popout 0.75s backwards;
	animation: popout 0.75s ease backwards;
	animation-delay: 8.25s;
	z-index: 150;
}
.right-eye {
	top: 45%;
	left: 62%;
	background: black;
	width: 15%;
	height: 15%;
	border-radius: 50%;
	-webkit-animation: popout 0.75s backwards;
	-moz-animation: popout 0.75s backwards;
	animation: popout 0.75s ease backwards;
	animation-delay: 8.5s;
	z-index: 150;
}  
.left-eye {
	top: 35%;
	left: 21%;
	background: black;
	width: 15%;
	height: 15%;
	border-radius: 50%;
	-webkit-animation: popout 0.75s backwards;
	-moz-animation: popout 0.75s backwards;
	animation: popout 0.75s ease backwards;
	animation-delay: 8.75s;
	z-index: 150;
}  
.nose {
  -webkit-clip-path: polygon(70% 51%, 70% 72%, 0 60%);
  clip-path: polygon(70% 50%, 70% 72%, 0 60%);
  top: -180%;
	left:-230%;  
	width: 10%;
	height: 11rem;
	border-right: 10rem solid #d73d00;
	-webkit-animation: popout 0.75s backwards;
	-moz-animation: popout 0.75s backwards;
	animation: popout 0.75s ease backwards;
	animation-delay: 9s;
	z-index: 150;
}
.snowman-mouth-1 {
	top: 72%;
	left: 21%;
	background: black;
	width: 5%;
	height: 5%;
	border-radius: 50%;
	-webkit-animation: popout 0.75s backwards;
	-moz-animation: popout 0.75s backwards;
	animation: popout 0.75s ease backwards;
	animation-delay: 9.1s;
	z-index: 155;
}
.snowman-mouth-2 {
	top: 78%;
	left: 29%;
	background: black;
	width: 5%;
	height: 5%;
	border-radius: 50%;
	-webkit-animation: popout 0.75s backwards;
	-moz-animation: popout 0.75s backwards;
	animation: popout 0.75s ease backwards;
	animation-delay: 9.2s;
	z-index: 155;
}
.snowman-mouth-3 {
	top: 80%;
	left: 40%;
	background: black;
	width: 5%;
	height: 5%;
	border-radius: 50%;
	-webkit-animation: popout 0.75s backwards;
	-moz-animation: popout 0.75s backwards;
	animation: popout 0.75s ease backwards;
	animation-delay: 9.3s;
	z-index: 155;
}
.snowman-mouth-4 {
	top: 79%;
	left: 51%;
	background: black;
	width: 5%;
	height: 5%;
	border-radius: 50%;
	-webkit-animation: popout 0.75s backwards;
	-moz-animation: popout 0.75s backwards;
	animation: popout 0.75s ease backwards;
	animation-delay: 9.4s;
	z-index: 155;
}
.snowman-mouth-5 {
	top: 74%;
	left: 62%;
	background: black;
	width: 5%;
	height: 5%;
	border-radius: 50%;
	-webkit-animation: popout 0.75s backwards;
	-moz-animation: popout 0.75s backwards;
	animation: popout 0.75s ease backwards;
	animation-delay: 9.5s;
	z-index: 155;
}