* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3399ff;
  margin-bottom: 10px;
}

.judul {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  font-size: 1.8rem;
  color: #003366;
}

body {
  background-color: #e6f0ff;
  padding: 20px;
}

.judul {
  text-align: center;
  margin-bottom: 30px;
  color: #003366;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px auto;
  display: block;
  border: 3px solid #3399ff;
}

.card h2 {
  font-size: 1rem;
  color: #003366;
  margin-bottom: 5px;
}

.card a {
  color: #3399ff;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card a:hover {
  text-decoration: underline;
}

.card:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
