*{
  		margin: 0;
  		padding: 0; 
  		box-sizing: border-box;
}
body{
  	background-color: #178380;
  		 
}
.alone{
	width: 100%;
	text-align: center;
	position: relative;
	top: 50px;
	color: white;
	font-family: sans-serif;
	text-transform: uppercase;
	font-size: 2em;
}
.top-main{
	height: 90vh;
  	display: flex;
}
.container{
  		margin: auto;
  		width: 300px;
  		height: 300px;
  		display: flex;
  		flex-direction: column;
  		justify-content: space-around;
  		text-align: center;
  		position: relative;
  		}
.headchar{
	width: 50px;
	height: 50px;
	background-color: #fff;
	border-radius: 50%;
	position: relative;
	left: 35px;
	top: 20px;
	animation: headChange 1s infinite 1.6s ease-in;
}
.bodychar{
	width: 40px;
	height: 100px;
	background-color: white;
	border-radius: 60px 10px 0 0;
	animation: bodychange 1s infinite 1.6s ease-in;
}
.firstleg, .secondleg{
	width: 35px;
	height: 10px;
	background-color: white;
	border-radius: 20px 50px 50px 20px;
	position: relative;
	left: 20px;
	top: 55px;
	animation: walk 2s infinite linear;
}
.secondleg{
	top: 25px;
	animation-delay: 1s;
}
.shadowchar{
	width: 100px;
	height: 10px;
	position: relative;
	left: -30px;
	background-color: rgba(197,82,82, 0.2);
	border-radius: 50%;
	animation: shadowchange 1s infinite 1.6s linear;
}
@keyframes headChange{
	0%{
		transform: translateY(0px);
	}
	50%{
		transform: translateY(7px);
	}
	100%{
		transform: translateY(0px);
	}
}
@keyframes bodychange{
	0%{
		transform: translateY(0px);
	}
	50%{
		transform: translateY(3px);
	}
	100%{
		transform: translateY(0px);
	}
}
@keyframes walk{
	0%{
		transform: translateX(0px) rotate(0deg);
	}
	20%{
		transform: translateX(-20px) rotate(0deg);
	}
	40%{
		transform: translate(-40px, 0px) rotate(0deg);
	}
	60%{
		transform: translate(-30px, -10px) rotate(35deg);
	}
	80%{
		transform: translate(10px, -7px) rotate(-35deg);
	}
	100%{
		transform: translateX(0px);
	}
}
@keyframes shadowchange{
	0%{
		width: 100px;
	}
	50%{
		width: 110px;
	}
	100%{
		width: 100px;
	}
}
.author{
	color: white;
	width: 100%;
	position: relative;
	text-align: center;
	bottom: 50px;
}


































