/* Posisi konten di pojok kiri atas */
.topleft {
  display: flex;
  flex-direction: column;
  align-items: center;   /* center horizontal */
  justify-content: center; /* center vertical */
  text-align: center;
  height: 100vh;         /* penuh tinggi layar */
}

/* Styling logo bulat */
.logo-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;    /* membuat gambar jadi lingkaran */
  object-fit: cover;     /* crop gambar agar pas */
  margin-top: 20px;
}

/* Konten utama di tengah */
.middle {
  text-align: center;
  margin-top: 50px;
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-icons-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px; /* jarak antar icon */
}

.social-icons img,
.social-icon img {
  width: 24px;
  height: 24px;
  width: auto;
  height: auto;
}

.social-icon img:hover {
  transform: scale(1.1); /* efek hover tetap ada */
}



