body {
  font-family: "Oswald", sans-serif;
  margin: 0;
  text-align: center;
}

.header {
  background-image: url("images/bandung.png");
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#main-title,
#sub-title {
  display: inline-flex; /* or inline-block */
  align-items: center; /* centers text vertically if using flex */
  height: 48px; /* controls the “background height” */
  padding: 0 16px; /* horizontal space */
  border-radius: 15px;
  color: #dad7cd;
}

#main-title {
  background-color: #3a5a40;
}
#sub-title {
  background-color: #a3b18a;
  text-shadow: 0 0 4px black;
}

/* spacing between them; remove the invalid negative padding */
#main-title {
  margin-bottom: 8px;
} /* adjust as needed */

#activity {
  background-color: #dad7cd;
  margin-top: 0px;
  padding: 8px 8px 40px 8px;
}

#activity-title {
  margin-bottom: 40px;
  color: #3a5a40;
}

#activity-list {
  display: flex;
}

.activity-place {
  color: #344e41;
}

.activity-description {
  color: #dad7cd;
}

.activity-item {
  flex: 1;
  margin: 0 12px;
  padding: 12px;
  background-color: #a3b18a;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.activity-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

#guide {
  padding: 40px;
}

.guide-title {
  color: dad7cd;
}
.guide-description {
  font-style: italic;
}

#guide-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 12px;
  width: 400px;
  margin: 0 auto;
  background-color: #a8dadc;
  border-bottom: 4px solid #1d3557;
  border-radius: 10px;
}

#guide-img {
  width: 150px;
}
