body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #87CEEB, #1E90FF, #000080);
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/*para sa title */
h1 {
  background: linear-gradient(to right, black, pink, green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

/* para sa border or box ng pic*/
.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/*para sa Cards */
/* nico robin */
.card {
  background-image:url('Bgrobin.jpg');
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card2 {
  background-image:url('Bgmarco.jpg');
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card3 {
  background-image:url('Bgzoro.jpg');
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* animatiob effect */
.card:hover {
  transform: scale(1.05);
  box-shadow: 4px 6px 15px rgba(0,0,0,0.25);
}
.card2:hover {
  transform: scale(1.05);
  box-shadow: 4px 6px 15px rgba(0,0,0,0.25);
}
.card3:hover {
  transform: scale(1.05);
  box-shadow: 4px 6px 15px rgba(0,0,0,0.25);
}
/* para sa mga picss */
.card img {
  max-width: 100%;
  height: 200px;
  margin-bottom: 15px;
}
.card2 img {
  max-width: 100%;
  height: 200px;
  margin-bottom: 15px;
}
.card3 img {
  max-width: 100%;
  height: 200px;
  margin-bottom: 15px;
}

/* text loob ng card */
/*robin card*/
.card h2 {
  margin: 10px 0;
  color: rgb(235, 21, 188);
}

.card p {
  color: rgb(235, 21, 188);
  font-size: 14px;
  line-height: 1.4
 
}
/*marco card*/
.card2 h2 {
  margin: 10px 0;
   color: rgb(185, 199, 36);
}


.card2 p {
   color: rgb(185, 199, 36);
  font-size: 14px;
  line-height: 1.4;
}
/*Zoro card*/
.card3 h2 {
  margin: 10px 0;
    color: rgb(139, 14, 150);
}

.card3 p {
   color: rgb(139, 14, 150);
  font-size: 14px;
  line-height: 1.4;
}
/* Info Box */
.info-box {
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 15px;
  margin: 20px auto;
  max-width: 900px;
  max-height: 200px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
  text-align: left;
}

.info-box h2 {
  margin-bottom: 8px;
  font-size: 16px;
  color: rgb(139, 14, 150);
}

.info-box p {
  margin: 6px 0;
  font-size: 13px;
  line-height: 1.3;
  color: #f5f5f5;
}
/* para alam nila sakin gawa */
footer{
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 40px;
}