body {
  margin: 0;
  padding: 0; 
  font-family: "Mozilla Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

#header {
  background-color: pink;
  padding: 20px; 
  text-align: center;
  color: white;
}

.container {
  display: flex;
  flex-direction: column; 
  align-items: center;
  padding: 30px; 
}

.profil {
  width: 60%;
  text-align: center;
  margin-bottom: 40px;
}

.profil img {
  width: 200px;
  height: 200px;
  border-radius: 50%; 
  object-fit: cover; 
  margin-bottom: 20px;
}

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

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

.kartu-aktivitas {
  background-color: pink;
  padding: 20px; 
  border: 1px solid white;
  border-radius: 50px;
  flex-basis: 30%;
  box-sizing: border-box;

}

.kartu-aktivitas:hover {
  box-shadow: 0 4px 12px red;
  border-color: red;
}

