body {
  background-color: #174A5A;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin: 0;
}

.eye {
  width: 80px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.pupil {
  width: 30px;
  height: 30px;
  background-color: black;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 25px;
  transition: transform 0.05s;
}