#mainControls {
	display: flex;
	justify-content: center;
	align-items: center;
}

#mainControls > p {
	display: inline-block;
	position: relative;
	width: 150px;
	margin: 5px;
	padding: 10px 0 0;
}
/* mouse */
#mouse {
	position: relative;
	top: 30px;
	width: 50px;
	height: 100px;
	border-radius: 30% 30% 50% 50%;
	background-color: #555;
}

#mouseBottom {
	position: absolute;
	top: 30px;
	width: 50px;
	height: 70px;
	border-radius: 30% 30% 50% 50%;
	background-color: #000;
}

#mouseButtons {
	position: absolute;
	left: 24px;
	width: 2px;
	height: 30px;
	background-color: #000;
}

#mouseScroll {
	position: absolute;
	top: 5px;
	left: 22px;
	width: 6px;
	height: 20px;
	border-radius: 100%;
	background-color: #fff;
}

#mouseScroll:after {
	content: "";
	position: absolute;
	top: -14px;
	left: -4px;
	width: 14px;
	height: 40px;
	border-radius: 100%;
	border-top: 4px solid #f00;
	border-bottom: 4px solid #f00;
	background-color: transparent;
	animation: waves 2s linear infinite;
}

#mouseScroll:before {
	content: "";
	position: absolute;
	top: -22px;
	left: -6px;
	width: 18px;
	height: 60px;
	border-radius: 100%;
	border-top: 4px solid #f00;
	border-bottom: 4px solid #f00;
	background-color: transparent;
	animation: waves 2s linear infinite;
}
/* hand */
#hand {
	display: inline-block;
	position: relative;
	top: 50px;
	width: 50px;
	height: 20px;
	border-radius: 0 0 50% 50%;
	background-color: #000;
}

#hand:after {
	content: "";
	position: absolute;
	z-index: 1;
	top: -65px;
	left: 8px;
	width: 14px;
	height: 40px;
	border-radius: 100%;
	border-top: 4px solid #f00;
	border-bottom: 4px solid #f00;
	background-color: transparent;
	animation: waves 2s linear infinite;
}

#hand:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: -75px;
	left: 6px;
	width: 18px;
	height: 60px;
	border-radius: 100%;
	border-top: 4px solid #f00;
	border-bottom: 4px solid #f00;
	background-color: transparent;
	animation: waves 2s linear infinite;
}

#thumb {
	position: absolute;
	top: -14px;
	left: 0px;
	width: 10px;
	height: 15px;
	border-radius: 5px 5px 0 0;
	background-color: #000;
}

#forefinger {
	position: absolute;
	top: -44px;
	left: 10px;
	width: 10px;
	height: 45px;
	border-radius: 5px 5px 0 0;
	background-color: #000;
}

#middlefinger {
	position: absolute;
	top: -24px;
	left: 20px;
	width: 10px;
	height: 25px;
	border-radius: 5px 5px 0 0;
	background-color: #000;
}

#ringfinger {
	position: absolute;
	top: -22px;
	left: 30px;
	width: 10px;
	height: 23px;
	border-radius: 5px 5px 0 0;
	background-color: #000;
}

#pinky {
	position: absolute;
	top: -19px;
	left: 40px;
	width: 10px;
	height: 20px;
	border-radius: 5px 5px 0 0;
	background-color: #000;
}
/* animation */
@keyframes waves {
	0% { opacity: 0; }
	50% { opacity: 1; }
	100% { opacity: 0; }
}