body {
    height: 100vh;
    overflow-y: hidden;
    background-image: url(https://file.garden/aIsfEmKdCw5cTYHb/crow_small-1.jpg);
    background-size: cover;
    background-attachment: fixed;
    margin-top: 10vh;
}

.noise::before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    content: "";
    opacity: .05;
    mix-blend-mode: hard-light;
    z-index: 1000;
    pointer-events: none;
    background: url(https://file.garden/aIsfEmKdCw5cTYHb/noise.gif);
}

@font-face {
    font-family: 'Pantasia';
    src: url('assets/PantasiaUnlicencedTrial-Regular.woff2') format('woff2'),
}

@font-face {
    font-family: 'Lettra';
    src: url('assets/PPLettraMono-UltralightItalic.otf');
    font-style: normal;
    font-weight: normal;
}

h2 {
    font-family: Lettra;
    font-size: 1.2em;
    color: #F0ECE2;
}

h2 a {
    text-shadow: #E4E0D8 1px 0 10px;
    color: #E4E0D8;
    text-decoration: none;
}


p {
    font-family: Pantasia;
    font-size: 1.1em;
}

/*BASIC ENDS*/

#poem {
    width: 80vw;
    margin: auto;
    font-size: 2.5em;
    animation: flickerAnimation 1s infinite;
    filter: blur(0.3px);
    cursor: none;
}

#tiny {
    display: block;
    position: absolute;
    height: 24em;
    top: 20px;
    bottom: 1%;
    right: 100px;
    filter: blur(0.8px);
    z-index: 1001;
    cursor: pointer;
}

#tiny:hover {
    color: #191714;
    filter: blur(4px) brightness(10%);
    /* darken when overlay is open */
    mix-blend-mode: hard-light;
    opacity: 50%;
cursor: pointer;
}

.crow_home {
    position: relative;
    /* keep your original layout */
}


#tiny.active {
    color: #191714;
    filter: blur(4px) brightness(10%);
    /* darken when overlay is open */
    mix-blend-mode: hard-light;
    opacity: 50%;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #19171474;
    display: none;
    /* hidden by default */
    z-index: 1000;
    opacity: 0;
}

#overlay.visible {
    display: block;
    opacity: 1;
}

#message {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 40%;
    max-width: 280px;
    text-align: justify;
    padding: 1.5em 2em;
    background: rgba(240, 236, 226, 0.92);
    border-radius: 4px;
    font-family: pantasia;
    font-size: 0.76em;
    line-height: 1.6;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.45);
}

@keyframes flickerAnimation {
    0% {
        opacity: 0.9;
        filter: blur(0.3px);
    }

    7% {
        opacity: 0.85;
    }

    15% {
        opacity: 0.95;
    }

    22% {
        opacity: 0.86;
    }

    31% {
        opacity: 1;
    }

    45% {
        opacity: 0.88;
        filter: blur(0.6px);
    }

    60% {
        opacity: 0.92;
        filter: blur(0.2px);
    }

    75% {
        opacity: 0.82;
    }

    90% {
        opacity: 0.96;
    }

    100% {
        opacity: 1;
        filter: blur(0px);
    }
}