body {
	background: #222222;
	height: 100vh;
}

.wrapper span {
	position: fixed;
	bottom: -180px;
	height: 50px;
	width: 50px;
	z-index: -1;
	background-color: #828080; /* Heart shape color */
	box-shadow: 0 0 30px #938989, 0 0 100px #c0a8a8, 0 0 150px #9b8e8e, 0 0 200px #e3cccc;
	animation: animate 10s linear infinite;
	border-radius: 50%;
}
.wrapper span:nth-child(odd) {
    height: 10px;
	animation-delay: 6s;
    width: 10px;
}
.wrapper span:nth-child(1) {
	left: 60px;
	animation-delay: 0.6s;
}
.wrapper span:nth-child(2) {
	left: 50px;
	animation-delay: 0.3s;
    width: 30px;
	height: 30px;
}

.wrapper span:nth-child(3) {
	left: 10%;
	animation-delay: 3s;
	width: 50px;
	height: 50px;
}
.wrapper span:nth-child(4) {
	left: 30%;
	animation-delay: 4s;
	width: 20px;
	height: 20px;
}

.wrapper span:nth-child(5) {
	left: 20%;
	animation-delay: 2s;
}

.wrapper span:nth-child(4) {
	left: 30%;
	animation-delay: 5s;
	width: 60px;
	height: 60px;
}

.wrapper span:nth-child(5) {
	left: 40%;
	animation-delay: 1s;
}

.wrapper span:nth-child(6) {
	left: 50%;
	animation-delay: 7s;
}

.wrapper span:nth-child(7) {
	left: 60%;
	animation-delay: 6s;
	width: 10px;
	height: 10px;
}

.wrapper span:nth-child(8) {
	left: 70%;
	animation-delay: 8s;
}

.wrapper span:nth-child(9) {
	left: 80%;
	animation-delay: 6s;
	width: 60px;
	height: 60px;
}

.wrapper span:nth-child(10) {
	left: 90%;
	animation-delay: 4s;
}

.banner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.content h2 b {
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 3px;
	-webkit-text-stroke-color: #fff;
	font-family: montserrat;
	font-size: 80px;
	text-transform: uppercase;
	letter-spacing: 12px;
}

@keyframes animate {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	80% {
		opacity: .7;
	}
	100% {
		transform: translateY(-800px) rotate(360deg);
		opacity: 0;
	}
}
