* {
	margin: 0;
	padding: 0;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
body {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	background: linear-gradient(135deg, #0a192f 0%, #172a45 50%, #0a192f 100%);
}
.container:not(#base .container) {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(135deg, #0a192f 0%, #172a45 50%, #0a192f 100%);
	background-image: url("../img/0.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.container:not(#base .container) span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4px;
	height: 4px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1),
		0 0 0 8px rgba(255, 255, 255, 0.1),
		0 0 20px rgb(255, 255, 255);
	animation: bg 3s linear infinite;
}
.container:not(#base .container) span::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 300px;
	height: 3px;
	background: linear-gradient(90deg, #fff, transparent);
}
.container:not(#base .container) span:nth-child(1){
	top: -4px;
	right: 0;
	left: initial;
	animation-delay: 0s;
	animation-duration: 1s;
}
.container:not(#base .container) span:nth-child(2){
	top: -4px;
	right: 80px;
	left: initial;
	animation-delay: 0.2s;
	animation-duration: 3s;
}
.container:not(#base .container) span:nth-child(3){
	top: 76px;
	right: 0;
	left: initial;
	animation-delay: 0.4s;
	animation-duration: 2s;
}
.container:not(#base .container) span:nth-child(4){
	top: -4px;
	right: 180px;
	left: initial;
	animation-delay: 0.6s;
	animation-duration: 1.5s;
}
.container:not(#base .container) span:nth-child(5){
	top: -4px;
	right: 400px;
	left: initial;
	animation-delay: 0.8s;
	animation-duration: 2.5s;
}
.container:not(#base .container) span:nth-child(6){
	top: -4px;
	right: 600px;
	left: initial;
	animation-delay: 1s;
	animation-duration: 3s;
}
.container:not(#base .container) span:nth-child(7){
	top: 296px;
	right: 0;
	left: initial;
	animation-delay: 1.2s;
	animation-duration: 1.75s;
}
.container:not(#base .container) span:nth-child(8){
	top: -4px;
	right: 700px;
	left: initial;
	animation-delay: 1.4s;
	animation-duration: 1.25s;
}
.container:not(#base .container) span:nth-child(9){
	top: 9996px;
	right: 0;
	left: initial;
	animation-delay: 0.75s;
	animation-duration: 2.25s;
}
.container:not(#base .container) span:nth-child(10){
	top: -4px;
	right: 450px;
	left: initial;
	animation-delay: 2.75s;
	animation-duration: 2.25s;
}
@keyframes bg {
	0% {
		transform: rotate(315deg) translateX(0);
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: rotate(315deg) translateX(-1000px);
		opacity: 0;
	}
}
@media (max-aspect-ratio: 10/1) {
	.container {
		background-position-y: center;
	}
}
