@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital,wght@0,400;0,700;1,400&family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&display=swap');
/* https://fonts.google.com/specimen/Instrument+Serif */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Libre Caslon Text', serif;
    background-color: rgba(249, 247, 235, 1.0);
    /* Safari iOS safe area support */
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    /* Extend background to safe areas on iOS */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    margin-top: calc(-1 * env(safe-area-inset-top));
    margin-bottom: calc(-1 * env(safe-area-inset-bottom));
}

#divine-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 0;
} */

.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.statement {
    background-color: rgba(249, 247, 235, 0.95);
    padding: 60px;
    max-width: 400px;
    width: 80%;
    text-align: left;
    border: 1px solid #ddd;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .statement {
        padding: 40px 30px;
        width: 90%;
        margin: 20px 0;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    p {
        font-size: 0.95rem;
    }
}

h1 {
    font-family: 'Instrument Serif', serif;
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: blue;
    text-align: center;
}

p {
    font-family: 'Libre Caslon Text', serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-family: 'Libre Caslon Text', serif;
    font-size: 0.9rem;
    line-height: 1.5rem;
    color: #444;
    padding: 10px 20px;
    max-width: 400px;
    width: 80%;
}
