* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: Arial, sans-serif;
  background: #fff;
} */

.cursive_center {
  text-align: center;          /* center align */
  font-family: cursive; 
  color: white;        /* cursive style */
}
/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 20px;
}

/* Tablet */
@media (min-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 2500px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.card {
  text-align: center;
  
}

.center {
  text-align: center;
}

/* Image */
.image-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover effect */
.image-link:hover img {
  transform: scale(1.03);
}

/* Title */
.title-link {
  text-decoration: none;
}

.title-link h3 {
  margin-top: 15px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #333;
}

/* Title hover */
.title-link:hover h3 {
  text-decoration: underline;
}