body {
    margin: 0;
    padding: 0;
    font-family: "Adobe Jenson Pro", Georgia, serif;
    background-color: #FFFCFA;
    color: #260B00;
}

.page-main {
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 140px 56px 56px;
}

.plain-poem-block {
    margin: 0;
    max-width: 430px;
    font-size: 22px;
    line-height: 1.7;
    text-align: left;
    padding: 12px 0;
    white-space: normal;
}

.fish-char {
    display: inline-block;
    transform-origin: center;
    transition: transform 90ms ease-out;
    will-change: transform;
}

.fisheye-lens {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1.5px solid rgba(38, 11, 0, 0.35);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.12) 42%, rgba(255, 255, 255, 0.03) 72%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6) inset, 0 8px 26px rgba(38, 11, 0, 0.14);
    pointer-events: none;
    opacity: 0;
    transition: opacity 180ms ease-out;
    z-index: 20;
}

.fisheye-lens.is-visible {
    opacity: 1;
}
