/* Custom Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  font-size: 1.5rem;
}

header {
  background-color: #007bff;
  padding: 40px 0;
}

header h1 {
  font-family: 'Georgia', serif;
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #007bff;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 1px 4px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
  animation: fadeIn 1s ease-in-out;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff6b6b;
  margin: 10px auto 0;
  border-radius: 2px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}
