@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Reenie+Beanie:wght@400&display=swap');

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
.printbleed{
    font-family: "Inter", serif;
    letter-spacing: -5px;
    font-size: 50px;
    text-align: center;
    color: rgb(0, 0, 0);
    filter: blur(0.8px)
}
.printbleed2{
    font-family: "Inter", serif;
    letter-spacing: -4px;
    font-size: 30px;
    text-align: center;
    color: rgb(0, 0, 0);
    filter: blur(0.8px)
}
.printbleedmini{
    font-family: "Inter", serif;
    letter-spacing: -5px;
    font-size: 30px;
    text-align: left;  
    color: rgb(0, 0, 0);
}
.paratex {
    font-family: "Inter", serif;
    font-size: 17px;
    font-weight: bold;
    text-align: left;
    color: rgb(0, 0, 0);
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.paratex a,
.paratex a:link,
.paratex a:visited,
.paratex a:hover,
.paratex a:active {
    color: rgb(0, 0, 0);
    text-decoration: none;
    outline: none;
}
.section-tight {
    margin-bottom: 40px;
}
.section-tight div {
    line-height: 1.2;
}
.section-spaced {
    margin-bottom: 40px;
}
.section-spaced .header {
    margin-bottom: 20px;
}
.section-spaced div:not(.header) {
    line-height: 1.2;
}

/* Reenie Beanie font class */
.reenie-beanie {
    font-family: "Reenie Beanie", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    font-size: 27px;
}

/* Character-by-character typewriter blur animation */
.reveal-char {
    opacity: 0;
    filter: blur(6px);
    display: inline;
    animation: typewriterBlur 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes typewriterBlur {
    0% {
        opacity: 0;
        filter: blur(6px);
    }
    15% {
        opacity: 0.15;
        filter: blur(5px);
    }
    30% {
        opacity: 0.4;
        filter: blur(4px);
    }
    45% {
        opacity: 0.6;
        filter: blur(3px);
    }
    60% {
        opacity: 0.8;
        filter: blur(2px);
    }
    75% {
        opacity: 0.9;
        filter: blur(1px);
    }
    90% {
        opacity: 0.98;
        filter: blur(0.5px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
    }
}
/* Mobile Responsiveness */
@media screen and (max-width: 480px) {
    body {
        padding: 15px;
    }
    .paratex {
        font-size: 15px;
        padding: 0 15px;
    }
    .section-tight, .section-spaced {
        margin-bottom: 30px;
    }
    .section-spaced .header {
        margin-bottom: 15px;
    }
}
