
.lexend-regular {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.home-button {
  position: fixed;
  top: 20px;
  left: 20px;
  padding: 10px 18px;
  font-size: 16px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid white;
  border-radius: 10px;
  text-decoration: none;
  z-index: 9999;
  transition: background 0.3s, transform 0.2s;
}

.home-button:hover {
  background: white;
  color: black;
  transform: scale(1.05);
}

body {
  background-color: #3c5056;
  color: #ffffff;
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  font-family: "Lexend", sans-serif;
  position: relative;
}

/* Background title text */
.background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10vw;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    user-select: none;
}

#episode-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 1.5vw;
    padding: 10px 20px;
    border-radius: 10px;
    max-width: 80%;
    text-align: center;
    display: none;
    z-index: 3;
    background-color: #000000;
}

.large-eye {
    width: 400px;
    height: 300px;
    position: absolute;
    cursor: pointer;
    z-index: 2;
}

.small-eye {
    width: 200px;
    height: 120px;
    margin: 5px;
    cursor: pointer;
    z-index: 1;
}

.eye {
  background-size: cover;
  background-position: center;
  cursor: pointer;
  filter: brightness(1500%);
  overflow: hidden;
}

.eye img {
    position: absolute;
    width: 250%;
    height: 250%;
    object-fit: cover;
    top: -70%;
    left: -70%;
    transition: opacity 0.01s linear;
    opacity: 0;
}

.eye img.active {
    opacity: 1;
}

.top-left { top: 20px; left: 20px; }
.top-right { top: 20px; right: 20px; }
.bottom-left { bottom: 20px; left: 20px; }
.bottom-right { bottom: 20px; right: 20px; }

#small-eyes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}