body {
    background-color: #efe7c8;
    color: #333;
    margin: 0;
    position: fixed;
    touch-action: none;
    overscroll-behavior: none;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
}

html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.contentWrapper {
    padding: 20px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.paragraphBody {
    display: flex;
    justify-content: center;
    position: relative;
    height: 100%;
    overflow: hidden;
}


.paragraphBody p {
    white-space: pre-line;
    font-size: 2em;
    text-align: center;
    overflow-y: auto;
    height: 100%;
    padding: 80px 20px;
    margin: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(51, 51, 51, 0.3) transparent;
    line-height: 1.6;
}

.paragraphBody p .text-line {
    display: block;
    transition: font-size 0.4s ease-out, transform 0.4s ease-out, opacity 0.3s ease-out;
    transform-origin: center;
    margin: 0.5em 0;
    line-height: 1.4;
}

.paragraphBody p::-webkit-scrollbar {
    width: 8px;
}

.paragraphBody p::-webkit-scrollbar-track {
    background: transparent;
}

.paragraphBody p::-webkit-scrollbar {
    display: none;
}

.paragraphBody p {
    scrollbar-width: none;
}
.clear {
    background-color: transparent;
    cursor: pointer;
    border: none;
    padding: 0;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.clear:active img,
.clear:focus img {
    transform: scale(1.08);
    transition: transform 0.2s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.clear img {
    transition: transform 0.2s cubic-bezier(0.4, 0.2, 0.2, 1);
}
body,
body * {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

  #imageContainer {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }

  .falling-img {
    position: absolute;
    width: 140px;
    top: -100px; /* Start above the screen */
    opacity: 0;
    animation: fallDown linear forwards;
  }

@keyframes fallDown {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translateY(120vh); /* Go beyond bottom of screen */
        opacity: 0;
    }
}

  #lightboxOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(235, 242, 204, 0.416);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  #lightboxOverlay img {
    max-width: 90vw;
    max-height: 90vh;
  }