body {
	font-family: Arial;
	background-color: #262328;
}
section {
	height: 100vh;
	position: relative;
}

/* MAIN CLASSES - FIRST SHAPES */
.first-circle {
	background-color: #b6b1bb;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -20px 0 0 -20px;
	transition: all ease .5s;
}
.second-circle {
	background-color: #fff;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	display: none;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -20px 0 0 -20px;
	transition: all ease .5s;
}
.orbit-circle {
	width:200px;
    height:200px;
	border-radius: 50%;
	display: none;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -100px 0 0 -100px;
	transition: all ease .5s;
}
.circle-bunches {
	height: 400px;
	width: 350px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -200px 0 0 -175px;
	display: none;
	opacity: 0;
}
.circle-bunch {
	background-color: #fff;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	display: none;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -20px 0px 0px 80px;
	transition: all ease .5s;
}


/* ADDED/ANIMATED CLASSES - FIRST SHAPES */
.orange-hover {
	cursor: pointer;
	animation: fadeInOut 2s linear infinite;
}
.orange-hover:hover {
	background-color: #ff8066;
	transition: all ease .5s;
	animation: none;
}
.first-grow {
	width: 200px;
	height: 200px;
	margin: -100px 0 0 -100px;
	transition: all ease .5s;
}
.grow-shrink {
	animation: growShrink 3s forwards;
}
.fade-away {
	animation: fadeAway 3s forwards;
}
.orbit-animation {
	animation: orbit 3s linear forwards;
}

/* CSS ANIMATIONS - FIRST SHAPES */
@keyframes orbit {
	from {
		transform:rotate(0deg);
	}
	to {
		transform:rotate(360deg);
	}
}
@keyframes growShrink {
	0% {
		height: 40px;
		width: 40px;
	}
	50% {
		height: 100px;
		width: 100px;
	}
	100% {
		height: 40px;
		width: 40px;
	}
}
@keyframes fadeAway {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0; 
	}
}
@keyframes fadeInOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
	100% {
		opacity: 1; 
	}
}











