/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
/* === Tema Cute Baby Pink === */

/* Mengatur tampilan umum halaman */
body {
  background-color: #ffe6f2; /* baby pink background */
  font-family: "Comic Sans MS", "Poppins", sans-serif;
  color: #444;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Judul utama */
h1 {
  color: #ff66b2;
  background-color: #fff0f6;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(255, 182, 193, 0.4);
  width: fit-content;
  margin: 30px auto 10px auto;
}

/* Subjudul */
h2 {
  color: #ff80bf;
  margin-top: 20px;
}

/* Teks biasa */
p {
  font-size: 18px;
  background-color: #fff0f6;
  border-radius: 15px;
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
}

/* Link */
a {
  color: #ff4da6;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #ff99cc;
  text-decoration: underline;
}

/* Gambar */
img {
  border-radius: 20px;
  margin: 15px;
  box-shadow: 0 4px 10px rgba(255, 105, 180, 0.3);
}

/* Daftar (list) */
ul, ol {
  list-style: none;
  padding: 0;
}

li {
  background-color: #ffe6f2;
  border: 2px solid #ffb6c1;
  border-radius: 15px;
  display: inline-block;
  margin: 5px;
  padding: 8px 15px;
  transition: 0.3s;
}

li:hover {
  background-color: #ffccdc;
  transform: scale(1.05);
}

/* Membuat daftar terlihat rapi */
ul li a {
  color: #ff66b2;
}

ol {
  counter-reset: cute-counter;
}

ol li::before {
  counter-increment: cute-counter;
  content: counter(cute-counter) ". ";
}
