/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.title{
  font-size: 25px;
  text-align: center;
  margin-top: 10px;
  padding: 10px;
}
/* Body Styling */
body {
  font-family: 'gilory', sans-serif;
  /* background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%; 
  animation: gradientBG 15s ease infinite; */

  background: #e4e3e3;
  height: 100vh;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Container */
.container {
     display: flex;
 flex-direction: row;
 flex-wrap: wrap;
gap: 25px;
justify-content: center;
  align-items: center;
  padding: 10px;
}

/* Card Styling */
.card {
  margin-top: 10px;
  background: linear-gradient(135deg, #c9c2c2, #4fb7e7);
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  text-align: center;
  transition: all 0.5s ease;
  transform: scale(1) rotate(0deg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hover Effects */
.card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 16px 40px rgba(0, 123, 255, 0.25);
  background: linear-gradient(120deg, #ffffff, #dfe9f3);
}

/* Card Elements */
.card h1 {
  margin-bottom: 15px;
  color: #333;
  transition: color 0.3s ease;
}

.card:hover h1 {
  color: #007bff;
}

.card p {
  margin-bottom: 20px;
  color: #555;
  transition: color 0.3s ease;
}

.card:hover p {
  color: #333;
}

.card a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.card a:hover {
  background-color: #0056b3;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

footer{
   width: 100%;
 background-color:  #e0e0e0;;
  background-size: 400% 400%; 
  color: black;
  text-align: center;
  padding: 10px 0;
  position: relative; 
  margin-top: 20px;
  font-weight: bold;
  border: none;
}

@media (max-width: 600px) {
  
.card{
  width: 80%;
  text-wrap: balance;
}


}