body {
    font-family: Arial, Helvetica, sans-serif; 
    margin: 0; 
    padding: 0;
    background: rgb(255, 236, 239);
}

#header {
    background-color: rgb(175, 95, 108);
    color: white;
    padding: 1px; 
    text-align: center;
    border-radius: 15px; /* ukurang lengkung sudut*/
}

.container {
    display: flex; /*agar bisa mengatur posisi*/
    flex-direction: column; /* arah posisi bisa vertikal(column) dan horizotal(row) */
    align-items: center;   
    gap: 20px; 
    padding: 20px; /*jarak dari atas*/
}

.profil {
    width: 50%;
    text-align: center;
    background-color: rgb(175, 95, 108);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 6px black;
}

.profil img {
    border-radius: 50%; 
    width: 190px;
    height: 200px;
    margin-bottom: 15px;
}

.galeri {
    width: 90%;
    display: flex;
    flex-direction: row; 
    justify-content: space-around; /* untuk jarak setiap kotak di dalam nya */
    flex-wrap: wrap; 
    background: rgb(255, 172, 186);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 6px black;
}

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

.kartu-aktivitas {
    background-color: pink;
    padding: 15px;
    border: 2px solid rgb(177, 96, 109); /*garis pinggrir kotak*/
    border-radius: 15px;
    flex-basis: 28%; 
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 15px;
}

.kartu-aktivitas:hover {
    transform: translateY(-15px);
    background: rgb(175, 95, 108);
}
