<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
	background-color: #3D4852;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	overflow-x: hidden; overflow-y: hidden;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 100px;
	width: 100px;
}

.radial {
	position: absolute;
	height: 10px;
	width: 30px;
	border-radius: 5px;
	background-color: #606F7B;
	left: -15px;
	transform: rotate(0deg);
	transform-origin: 65px;
	transition:background 1s, box-shadow 1s;
}

.glow{
	background: #51D88A;
	box-shadow: 0 0 25px 2px #A2F5BF;
}</pre></body></html>