.wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  column-gap: 20px; /* Adds 30px space between the two eyes */
}



#eye1 {
  justify-self: end;
}

.eye {
  position: relative;
  --radians: 0rad;
  --pupil-offset: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  background: none; /* Remove existing background color */
  border-radius: 50%;
}

.eye-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.pupil {
  position: absolute; /* Allow the pupil to move within the eye */
  width: 90px;
  height: 90px;
  background: #111;
  border-radius: 50%;
  transform: translateX(calc(20px - var(--pupil-offset)));
  z-index: 2;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); /* Adds a shadow with black at 50% opacity and 2px blur */

}

.eye-top-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 767px) { /* Adjust max-width to match your mobile breakpoint */
  .wrapper {
    column-gap: 10px; /* Adds 30px space between the two eyes */
  }

  .eye {
    width: 80px;
    height: 80px;
  }

  .pupil {
    width: 40px;
    height: 40px;
  }
}
