body {
	display: flex;
	width: 100vw;
	height: 100vh;
	align-content: center;
	justify-content: center;
	align-items: center;
	background: red;
	flex-flow: column;
	max-height: 500px;
}

.panda {
  width: 150px;
  height: 150px;
  position: relative;
 
}
.pandab {
	width: 250px;
	height: 250px;
	position: relative;
	z-index: -1;
	top: -24%;
}

.faceb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: white;
 box-shadow: 0px 5px 30px black;
}
.face {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: white;
 box-shadow: 0px 5px 30px black;
}

.eye {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: black;
	position: absolute;
	border-color: red;
	border-width: 40px;
	box-shadow: 0px 5px 10px red;
}

.eye.left {
  top: 25%;
  left: 25%;
}

.eye.right {
  top: 25%;
  left: 55%;
}

.nose {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: black;
	position: absolute;
	top: 45%;
	left: 38%;
}
.panda {
  animation: bounce 6s ease-in-out infinite;
  /* existing panda styles */
}
.pandab {
  animation: bounce 5s ease-in-out infinite;
  /* existing panda styles */
}
.ear {
  width: 40px;
  height: 40px;
  background-color: black;
  border-radius: 50%;
  position: absolute;
  transform: rotate(45deg);
}
.pandab .ear {
	width: 60px;
	height: 80px;
	top: 40% !important;
}
.ear.left {
  top: 0%;
  left: -5%;
}

.ear.right {
  top: 0%;
  left: 75%;
}
.mouth {
	width: 20px;
	height: 10px;
	background-color: black;
	position: absolute;
	bottom: 25%;
	left: 40%;
	border-radius: 0px 0px 20px 20px;
}
.cheek {
  width: 30px;
  height: 30px;
  background-color: black;
  border-radius: 50%;
  position: absolute;
}

.cheek.left {
  top: 40%;
  left: 35%;
}

.cheek.right {
  top: 40%;
  left: 55%;
}


@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}