body {
  margin: 0;
  padding: 0;
  background: #1e8784; /* Turquoise background */
  font-family: Georgia, serif;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
}

.slay-text {
  width: 60%;
  margin-right: 5%;
  color: #d3fefc;
  font-weight: bold;
  font-size: 2.3em;
  text-align: left;
  animation: popOut 1s ease-out forwards, glitter 2s infinite;
  text-shadow: 0 0 5px #fff, 0 0 10px #00d4c0, 0 0 20px #00d4c0;
}

.slay-image {
  width: 312.5px; /* 1.25 x 250px */
  height: 95vh;
  margin-left: 3%;
  border-radius: 12px;
  box-shadow: 0 0 15px #00ccc1;
  object-fit: cover;
}

audio {
  position: absolute;
  top: 10px;
  left: 10px;
}

@keyframes popOut {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes glitter {
  0%, 100% {
    text-shadow:
      0 0 5px #fff,
      0 0 10px #00d4c0,
      0 0 20px #00d4c0,
      0 0 40px #00d4c0;
  }
  50% {
    text-shadow:
      0 0 5px #fff,
      0 0 15px #00f6e0,
      0 0 30px #00f6e0,
      0 0 60px #00f6e0;
  }
}
