body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
  text-align: center;
  width: 100%;
}

h1 {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(to right, #f7b733, #fc4a1a);
  color: white;
  margin: 0;
  box-shadow: 0 4px 20px rgba(255, 150, 0, 0.5);

}

.container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
  padding: 20px;
}


.card {
  text-decoration: none;
  color: white;
  border: 1px solid #ccc;
  padding:0;
  border-radius: 12px;
  width: 100%;
  transition: 0.3s;
  background: #1e293b;
  font-size: 10px;
  text-align: center;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 80px;
  border-radius: 6px;
  margin-bottom: 4px;
  display: block;
  object-fit: cover;
}

.card:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.1);
}

.sosmed {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1e293b;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 10px 0;
  box-shadow: 0 -3px 10px rgba(0,0,0,0.5);
}

.sosmed img {
  width: 30px;
  height: 30px;
  transition: 0.2s;
}

.sosmed img:hover {
  transform: scale(1.2);
}

.wa-float {
  position: fixed;
  bottom: 70px;
  right: 15px;
  background: #0f172a;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.wa-float img {
  width: 30px;
  height: 30px;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float {
  animation: float 2s infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}


