html {
  font-family: Arial, sans-serif;
  padding: 0;
  margin: 0;
  max-width: 100%;
  min-width: 320px;
  background-color: rgb(245, 244, 236);
}

body {
  background-color: rgb(255, 255, 255);
  margin: 0;
  padding: 0;
}

.header {
  padding: 10px 0;
  text-align: center;
  font-family: sans-serif;
  text-transform: capitalize;
}

.judul {
  padding: 10px;
  margin: 10px;
}

.header h1, .header h2, .header h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
}

.tebal {
  margin-bottom: -12px;
  text-decoration: none;
  color: black;
}

.tipis {
  color: grey;
  margin-bottom: 40px;
}

header {
  background-color: #f5a623;
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  font-weight: bold;
  
}

.nav-links li {
  font-size: 18px;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: none;
  color: black
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: 20px;
}

.conten-1, .conten-2, .conten-3, .conten-4 {
  background-color: #f9f9f9;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 48%; 
  box-sizing: border-box;
}

.conten-1 img, .conten-2 img, .conten-3 img, .conten-4 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.conten-1 h3, .conten-2 h3, .conten-3 h3, .conten-4 h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #f5a623;
  font-family: 'Merriweather', serif;
}

.conten-1 p, .conten-2 p, .conten-3 p, .conten-4 p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.conten-1 a, .conten-2 a, .conten-3 a, .conten-4 a {
  color: #f5a623;
  text-decoration: none;
}

.conten-1 a:hover, .conten-2 a:hover, .conten-3 a:hover, .conten-4 a:hover {
  color: #2f4dc5;
}

/* Media query untuk tablet */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }

  .conten-1, .conten-2, .conten-3, .conten-4 {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Media query untuk HP */
@media (max-width: 576px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .conten-1, .conten-2, .conten-3, .conten-4 {
    width: 100%;
    margin-bottom: 15px;
  }

  .conten-1 h3, .conten-2 h3, .conten-3 h3, .conten-4 h3 {
    font-size: 20px;
  }

  .conten-1 p, .conten-2 p, .conten-3 p, .conten-4 p {
    font-size: 14px;
  }
}
