
/* Background */
body {
  background-color: #f4f4f9; /* Warna latar belakang lembut */
  font-family: 'Roboto', sans-serif; /* Font utama */
  color: #333; /* Warna teks utama */
  margin: 0;
  padding: 0;
}

/* Header */
header {
  background-color: #4CAF50; /* Hijau yang segar */
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
  margin: 0;
}

/* Navigation */
nav {
  background-color: #333;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin-right: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Main Content */
main {
  padding: 30px;
}

article {
  margin-bottom: 20px;
}

h2 {
  font-size: 1.8em;
  color: #4CAF50;
}

p {
  line-height: 1.6;
  font-size: 1.1em;
}

a {
  color: #059b3d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
}

footer p {
  font-size: 0.9em;
}
