body {
  margin: 0;
  height: 100vh;
  background-color: #f0f0f0;
}

.eye-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 50px;
}

.eye {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: white;
  border: 3px solid black;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s cubic-bezier(.23, 1, 0.32, 1);
}

.eye.closed {
    height: 0.1px;
}

.pupil {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: black;
  border-radius: 50%;
  transition: all 3s cubic-bezier(.23, 1, 0.32, 1);
}

.text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}

.text-container div {
  position: absolute;
  font-size: 20px;
  color: black;
  white-space: nowrap;
}
