:root {
	--bgcolor:  rgba(255, 255, 255, 0);
	--first: rgba(113, 214, 165, 1);
	--transition: 0.34s;
}
html,
body {
	background: rgba(255, 255, 255, 0);
	color: #fff;
	font-family: sans-serif;
	margin: 75px auto;
}
.calm {
	font-family: Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 10px;
	position: relative;
}
.yy {
	height: auto;
	width: 700px;
	overflow: hidden;
                margin: 0 auto;
	box-shadow: inset 0 0 50px 0 var(--first), inset 0 0 0 7px var(--first);
	border-radius: 100%;
	transition: box-shadow var(--transition) ease;
}
.yy img {
	height: auto;
	width: 100%;
	position: relative;
}
.chevron {
	width: 20px;
	height: 20px;
	background: transparent;
	margin: 0 auto 0;
	transform: translateY(0);
	top: -20px;
	position: absolute;
	left: 0;
	right: 0;
}
.chevron:after {
	width: 30px;
	height: 30px;
	background: var(--bgcolor);
	content: "";
	transform: rotate(45deg);
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
.chevron:before {
	width: 30px;
	height: 30px;
	background: var(--first);
	content: "";
	transform: rotate(45deg);
	display: inline-block;
	position: absolute;
	top: 10px;
	left: 0;
	transition: background var(--transition) ease;
}

.animation-chevron {
	animation-play-state: running;
	animation: bouncer cubic-bezier(0.69, -0.21, 0.04, 1.08) alternate infinite;
}
.animation-yy img:hover {
	animation-play-state: paused;
	cursor: crosshair;
}
.animation-yy img:hover + .animation-chevron {
	animation-play-state: paused;
}
.animation-yy img {
	animation-play-state: running;
	animation: rotate linear reverse infinite;
}

@keyframes rotate {
	0% {
		transform: rotate(360deg);
	}
}
@keyframes bouncer {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-28px);
	}
}
.info,
#rotationProgress {
	position: absolute;
	background: var(--first);
	color: #000;
	padding: 2px;
	width: 100px;
	margin: 0;
	left: 20px;
	transition: background var(--transition) ease;
}
#rotationProgress {
	top: 20px;
}
.info {
	top: 50px;
}

.crosshair {
	position: absolute;
	width: 50px; /* Adjust size as needed */
	height: 50px; /* Adjust size as needed */
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none; /* Initially hidden */
}

.crosshair img {
	width: 100%;
	height: 100%;
}