body {
  margin: 0;
  padding: 0;
  background: #14495e;
}

.eyes {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.eye {
  width: 240px;
  height: 120px;
  background: #fff;
  display: inline-block;
  margin: 40px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}


.ball {
  width: 80px;
  height: 80px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .eye {
    width: 150px;
    height: 75px;
  }

  .ball {
    width: 50px;
    height: 50px;
  }

  .eyes {
    gap: 10px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .eye {
    width: 100px;
    height: 50px;
  }

  .ball {
    width: 30px;
    height: 30px;
  }
}
