.glow {
	position: absolute;

	width: 300px;
	height: 300px;

	border-radius: 50%;
	box-shadow: 0px 0px 100px 20px var(--glow);
	filter: blur(60px);

	z-index: 0;
}

.glow::after {
	content: '';

	width: 100%;
	height: 100%;

	display: flex;

	border-radius: 50%;

	box-shadow: inset 0px 0px 100px 200px var(--glow);
}
