* {
	margin: 0;
	padding: 0;
}

.animation-area {
	background: linear-gradient(#f8fafc, #eff4f8, #eff4f8, #eff4f8, #f8fafc);
	/* width: 100%; */
	/* height: 100vh; */
}
.box-area {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.box-area li {
	position: absolute;
	display: block;
	list-style: none;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	/* background: rgba(255, 255, 255, 0.1); */
    animation: animate 20s linear infinite;
    background: none;
    /* border: solid 2px rgba(255, 255, 255, 0.1); */
    bottom: -150px;
    -webkit-box-shadow: 0px 0px 3px 1px rgb(236, 245, 253);
    -moz-box-shadow: 0px 0px 3px 1px rgb(229, 241, 252);
    box-shadow: 0px 0px 3px 1px rgba(176, 189, 201, 0.781);
}
.box-area li:nth-child(1) {
	left: 86%;
	width: 80px;
	height: 80px;
	animation-delay: 0s;
}
.box-area li:nth-child(2) {
	left: 12%;
	width: 20px;
	height: 20px;
	animation-delay: 2.5s;
	animation-duration: 10s;
}
.box-area li:nth-child(3) {
	left: 70%;
	width: 5px;
	height: 5px;
    animation-delay: 5.5s;

}
.box-area li:nth-child(4) {
	left: 42%;
	width: 100px;
	height: 100px;
	animation-delay: 0s;
	animation-duration: 15s;
}
.box-area li:nth-child(5) {
	left: 65%;
	width: 40px;
	height: 40px;
    animation-delay: 0s;
    animation-duration: 25s;
}
.box-area li:nth-child(6) {
	left: 15%;
	width: 110px;
	height: 110px;
	animation-delay: 3.5s;
}
.box-area li:nth-child(7) {
	left: 30%;
	width: 31px;
	height: 31px;
    animation-delay: 3.5s;
    animation-duration: 10s;
    
}
.box-area li:nth-child(8) {
	left: 18%;
	width: 40px;
	height: 40px;
	animation-delay: 1.5s;
    animation-duration: 22s;
    
}
.box-area li:nth-child(9) {
	left: 80%;
	width: 38px;
	height: 38px;
    animation-delay: 5.5s;
    animation-delay: .5s;
}
.box-area li:nth-child(10) {
	left: 55%;
	width: 10px;
	height: 10px;
	animation-delay: 0s;
	animation-duration: 8s;
}
@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translateY(-800px) rotate(360deg);
		opacity: 0;
	}
}