@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Unbounded:wght@200..900&display=swap');

body {
    font-family: Helvetica;
    font-size: 18px;
    background-color: #E6E6FA;
}
p {
    font-family: 'Caveat';
    font-size: 20px;
    text-align: center;
}

h1, h2, h3 {
    font-family: 'Unbounded';
    text-align: center;
    color: rgba(121, 55, 184, 0.586);
}

#header {
    background-color: #B39DDB;
    padding: 25px;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
}

.profil {
    text-align: center;
}

.profil img{
    width: 200px;
    border-radius: 50%;
    margin-top: 20px;
    border: #B39DDB 3px solid;
}

.galeri {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.kartu-aktivitas {
     background-color: #D1C4E9;
     padding: 10px;
     border: 3px solid #B39DDB;
     border-radius: 5px;
     width: 300px;
}

.kartu-aktivitas:hover {
    background-color: #c2ace9;
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 20px;
  }
  p {
    font-size: 15px;
  }
}