body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

#header {
  background-color: #22ca4c; 
  padding: 0px;
  text-align: center;
  color: white;
}


.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}


.profil {
  width: 100%;
  max-width: 400px;
  text-align: center;
  margin-bottom: 30px;
}

.profil img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}

.profil h2 {
  margin-top: 15px;
}

.profil p {
  margin-top: 10px;
}


.galeri {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.galeri h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}


.kartu-aktivitas {
  box-sizing: border-box;
  width: 30%;
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  flex-basis: 30%;
}

.kartu-aktivitas h3 {
  margin-top: 0;
}

.kartu-aktivitas p {
  font-size: 0.9em;
}

.kartu-aktivitas:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-color: #4CAF50;
}

@media (max-width: 768px) {
  .container {
    margin: 10px;  
  }
  .galeri {
    flex-direction: column;
    align-items: center;
  }
  .kartu-aktivitas {
    width: 80%;
    margin-bottom: 20px;
}
}