body {
  background-color: grey;
}

h2 {
  color: white;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-align: center;
  font-size: xx-large;
}

.Eyes {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top:150px;
}

.Eye1,
.Eye2 {
  background-color: white;
  border-radius:30%;
  width: 120px;
  height:200px;
display: flex;
align-items: center;
  overflow: hidden;
}

.circle1,
.circle2 {
  background-color: black;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  
  animation-name:Circle;
  animation-duration:5s;
  animation-iteration-count:infinte;
}

@keyframes Circle {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px);
  }
  100% {
    transform: translate(0, 0);
  }
}
