.eyes-wrapper {
  position: absolute;
  top: 160px; 
  left: 780px;         
  display: flex;
  gap: 10px;        
  z-index: 10;
}

.eye {
  width: 50px;
  height: 50px;
  background: white;
  border: 10px solid black;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.pupil {
  width: 18px;
  height: 18px;
  background: black;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1500px) {
  .eyes-wrapper {
    display: none;
  }
}
