body {
    background: linear-gradient(to right, #fefcea, #f1da36);
    font-family: 'Segoe UI', sans-serif;
  }
  
  .story-card {
    transition: transform 0.3s;
  }
  
  .story-card:hover {
    transform: scale(1.03);
  }
  
  .card-title {
    font-size: 1.3rem;
    font-weight: bold;
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background-color: #f9f9f9;
    margin-top: 2rem;
  }
  