.home {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 100dvh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: black;
    padding: 2rem;
    font-family: var(--font-biasa);
    isolation: isolate;
}

/* overlay gradient (mengganti gradient lama) */
.home::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(224,216,199,0) 40%,
        rgba(224,216,199,1) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* pastikan teks/isi di atas overlay */
.home > * { position: relative; z-index: 1; }

.home h2 {
    font-size: 1rem;
}

.home h1 {
    font-family: var(--font-kaligrafi);
    font-size: 3rem;
}

.quotes {
    background-color: var(--button);
    color: black;
    padding: 2rem;
    font-family: var(--font-biasa);
}

.content-catholic {
    align-items: center;
    text-align: center;
}

.content-catholic h2,
.content-buddha h2 {
    font-size: 1.5rem;
}