body {
    margin: 0;
    padding: 0;
    background: url("icons/bg.jpg") no-repeat center center fixed;
    background-size: 100% 100%;
    font-family: sans-serif;
    color: white;
    text-align: center;
  }

h1 {
    margin-top: 50px;
    font-size: 2.5rem;
    color: #b1c3d4;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.card {
    background: linear-gradient(145deg, #b3d1ff, #f0f8ff);
    border-radius: 20px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    width: 220px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #003366;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 200px;
    height: 220px;
    margin-bottom: 20px;
    padding-top: 1px;
    min-width: 0px;
    border-top-left-radius: 0px;
    border-width: 0px;
}

.card span {
    font-size: 1.1rem;
    font-weight: bold;
}

footer {
    margin-top: 60px;
    font-size: 1rem;
    color: #99bbee;
}

.qris-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  text-align: center;
  z-index: 999;
  text-decoration: none;
}

.qris-box {
  background: rgba(255, 255, 255, 0.9); /* semi transparan */
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: inline-block;
}

.qris-title {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #5a2ca0; /* ungu biar elegan */
  margin-bottom: 6px;
}

.qris-logo {
  width: 120px;   /* lebih besar */
  height: auto;
  transition: transform 0.3s ease;
}

.qris-logo:hover {
  transform: scale(1.05);
}

.qris-title {
  display: block;
  font-size: 15px;
  font-weight: 900; /* lebih tebal daripada bold biasa */
  color: #5a2ca0;   /* ungu */
  margin-bottom: 6px;
}


