/* styles.css */

/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Set the global font */
body {
    font-family: 'Poppins', sans-serif;
}

/* Kontainer umum */
.container {
    max-width: 1220px;
}

/* Gaya untuk konten post */
footer h1, .post-content h1 {
    font-size: 2.25rem; /* Example size */
    margin-bottom: 1rem;
}

footer h2, .post-content h2 {
    font-size: 1.875rem; /* Example size */
    margin-bottom: 0.75rem;
}

footer p, .post-content p {
    font-size: 1rem; /* Example size */
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Tambahkan gaya lainnya sesuai kebutuhan */


/* Read More Button Fixed at Bottom */
.bg-gray-800 {
    position: relative;
}

.bg-gray-800 .absolute {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
