/* Background utama */
body {
  background-image: url('image/bg.png');
  background-size: cover;
  background-attachment: fixed;
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Header */
.header {
  width: 100%;
  text-align: center;
  padding: 25px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  margin: 0;
  border-radius: 0;
}

.header h1 {
  font-size: 3em; /* Memperbesar teks Blog IndoSMP */
  margin: 0;
}

/* Tombol navigasi */
.nav-buttons {
  margin-top: 20px;
}

.nav-buttons button {
  padding: 14px 28px;
  margin: 0 10px;
  border: none;
  border-radius: 12px;
  background-color: #333;
  color: white;
  cursor: pointer;
  font-size: 1.5em; /* Memperbesar font tombol */
}

.nav-buttons button:hover {
  background-color: #555;
}

/* Container blog post */
.blog-post {
  background: rgba(50, 50, 50, 0.85);
  color: white;
  padding: 15px;
  margin: 15px auto;
  width: 80%;
  max-width: 500px; /* Mengecilkan lebar post blog */
  font-size: 0.9em; /* Ukuran teks diperkecil */
  text-align: center; /* Teks ditengah */
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

/* Footer */
.footer {
  text-align: center;
  padding: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
  border-radius: 0;
  font-size: 1em;
}

/* Responsive tampilan HP */
@media (max-width: 600px) {
  .blog-post {
    width: 90%;
    padding: 12px;
  }

  .nav-buttons button {
    padding: 12px 24px;
    margin: 5px;
    font-size: 1.2em;
  }

  .header h1 {
    font-size: 2.5em; /* Ukuran teks di HP */
  }
}
