body {
	background: #020617;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	overflow: hidden;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

svg {
	animation: spin 20s linear infinite;
	filter: drop-shadow(0 0 10px #a5b4fc);
}

.card {
	position: right;
	width: 300px;
	height: 500px;
	perspective: 1000px;
}

#layers .inside {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	animation: float 30s infinite alternate;

}

#layers .joker {
	position: absolute;
	top: 0;
	left: 0;
	width: 90%;
	height: 90%;
	border-radius: 20px;
	color: #a5b4fc
	animation: float 30s infinite alternate;

}

#layers .inside:nth-child(odd) {
	transform: rotate(0deg) scale(0.98);
	background: rgba(163, 179, 255, 0.02);
}
#layers .inside:nth-child(even) {
	transform: rotate(360deg) scale(0.98);
	border: 0.5px solid #a5b4fc;
}

.content {
	top: 50%;
	left: 100%;
	transform: translate(-50%, -50%);
	color: #a5b4fc;
	text-align: left;
}

h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
	filter: drop-shadow(0 0 1px #a5b4fc);
}

@keyframes float {
	from {
		transform: rotate(0deg) scale(1);
	}
	to {
		transform: rotate(360deg) scale(0.95);
	}
}