<style>
  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: darkblue;
  }

  /* Section title */
  .section-title {
    text-align: center;
    padding: 40px 20px 10px;
  }

  .section-title h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: #444;
    margin: 0;
    font-weight: 400;
  }

  .section-title h2 {
    font-size: 40px;
    color: #000;
    margin: 5px 0;
    font-weight: 500;
  }

  .section-title img {
    margin-top: 10px;
    width: 80px;
  }

  /* Stories grid */
  .stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 50px 50px;
    box-sizing: border-box;
  }

  .story {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }

  .story img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .story:hover img {
    transform: scale(1.05);
  }

  /* Overlay text */
  .story-name {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
  }
</style>