html {
  overflow: hidden;
  overscroll-behavior: none;
  width: 640px;
}
body {
  margin: 0;
  padding: 0;
  background-image: url("dot.png");
  background-size: 128px 128px;
  overflow: hidden;
  overscroll-behavior: none;
  width: 640px;
}

#buttons {
  z-index: 2;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 512px;
  top: 0;
  left: 128px;
  margin: 0;
  padding: 0;
}

#stores {
  z-index: 1;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 512px;
  top: 64px;
  left: 64px;
  margin: 0;
  padding: 0;
}

#content {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 128px;
  left: 128px;
  width: 512px;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.eye-container {
  z-index: 3;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 128px;
  height: 128px;
  /* Adjust positioning as needed */
}

.eye {
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  position: relative;
  overflow: hidden; /* Keep pupil within eye bounds */
  margin: 10px;
}

.pupil {
  width: 30px;
  height: 30px;
  background-color: black;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center pupil initially */
}

@keyframes blink-animation {
  0% {
    opacity: 1; /* Fully visible */
  }
  50% {
    opacity: 0; /* Fully hidden */
  }
  100% {
    opacity: 1; /* Fully visible again */
  }
}

.blinking-element {
  animation: blink-animation 2s infinite;
  /* Using visibility and steps() for abrupt blink: */
  /* animation: blink-animation 1s steps(1, start) infinite; */
}
