body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('https://cdn.glitch.global/29083bcb-04cf-4f90-9013-a0c0f012057b/blur.avif?v=1728520179060') no-repeat center center fixed; /* Initial background image */
    background-size: cover;
    transition: background 2s ease-in-out; /* Smooth transition for background change */
    overflow: hidden; /* Prevents overflow and helps with performance */
}

#text-box {
    position: absolute;
    bottom: 30px;
    right: 20px;
    width: 270px;
    padding: 10px;
    background: rgba(255, 255, 255, .95);
    color: #000000;
    font-family: "Monument Grotesk Monospace", monospace;
    border: 1px solid #000000;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  cursor: help;
    align-items: center;
    box-sizing: border-box;
    z-index: 10; /* Ensures text box stays above other elements */
}

#text-box h1 {
    font-size: 1em;
    margin: 0;
    font-family: "Monument Grotesk Monospace", monospace;
  cursor:help;
}

#text-box p {
    margin: 0;
    font-size: .8em;
    font-family: "Monument Grotesk Monospace", monospace;
  cursor: help;
}

#play-button {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    background: white;
    color: buttontext;
    border: 1px solid;
    font-size: 1em;
    font-family: inherit;
    box-shadow: none;
    margin-bottom: 10px;
   z-index: 10; /* Ensures text box stays above other elements */
  cursor:progress;
}

#next-button {
    position: absolute;
    top: 50px;
    right: 20px;
    cursor: pointer;
    background: white;
    color: buttontext;
    border: 1px solid;
    font-size: 1em;
    font-family: inherit;
    box-shadow: none;
    margin-bottom: 10px;
   z-index: 10;
  cursor: progress;/* Ensures text box stays above other elements */
}

#gifs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allows clicking through to underlying elements */
    overflow: hidden;
}

.gif {
    position: absolute;
    max-width: 150px;
    pointer-events: none; /* Allows clicking through the gifs */
    opacity: 0;
    animation: fadeInOut 20s ease-in-out infinite alternate;
}

@keyframes fadeInOut {
    0%, 90% { opacity: 0; }
    10%, 80% { opacity: 1; }
}

audio#audio-player {
    display: none;
}



/* Style for the slime drops */
.slime-drop {
  position: fixed;
  pointer-events: none; /* So it doesn't interfere with clicking */
  width: 40px;
  height: 10px;
  background: #00ff00; /* Slime green color - change as needed */
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity 3s;
}
