html,
body {
	height: 100%;
	background: #000000;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

/* Filter */

.dead-center {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	width: 60vw;
	background-color: white;
	height: 200%;
}

.filt {
	height: 200%;
	z-index: 3;
	mix-blend-mode: exclusion;
	opacity: 0.70;
	top: 49% !important;
}

.filt2 {
	height: 200%;
	z-index: 3;
	mix-blend-mode: hard-light;
	opacity: 0.55;
	top: 49% !important;
}

/* Orbital */

.bg-anchor {
	position: absolute;
	top: 50%;
	left: 53%;
}

.binary-star {
	animation: rotate-cw 40s linear infinite;
}

.lead {
	position: absolute;
	left: -30vh;
	top: -5vh;
}

.behind {
	position: absolute;
	left: 60vh;
	top: 20vh;
}

.centering {
	position: absolute;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Rings */

.ring {
	position: absolute;
	mix-blend-mode: screen;
	background-image: url("./images/m_car4_al.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	aspect-ratio: 1 / 1;
}

.big {
	width: 110vh;
	animation: rotate-ccw 65s linear infinite;
}

.small {
	width: 55vh;
	animation: rotate-ccw 25s linear infinite;
}

.medium {
	width: 80vh;
	animation: rotate-cw 45s linear infinite;
}

@keyframes rotate-cw {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes rotate-ccw {
	from { transform: rotate(360deg); }
	to { transform: rotate(0deg); }
}