body{
	background-color: #fbab5c;
	padding: 0;
	margin: 0;
}

.container{
	height: 300px;
	width: 300px;
}

.pokeball{
	height: 250px;
	width: 250px;
	border:13px solid black;
	border-radius: 50%;
	background-image: linear-gradient(
		#f51939 125px,
		white 125px);
	position:absolute;
	margin: auto;
	top:0;
	bottom:0;
	left:0;
	right:0;
	display: block;
	animation: 2s load infinite;
}

@keyframes load{
	50%{
		transform: scale(1.7);
	}
}

.pokeball:before{
	position: absolute;
	content:'';
	height:25px;
	width: 250px;
	background-color: black;
	top:120px;

}

.pokeball:after{
	position: absolute;
	content: "";
	height: 90px;
	width: 90px;
	background-image: radial-gradient(
		#ffffff 0px, #ffffff 10px,
		black 10px, black 15px,
		#ffffff 15px, #ffffff 32px,
		black 32px
		);
	border-radius: 50%;
	top:90px;
	left: 80px;
}