html, body {
      margin: 0;
      padding: 0;
      min-height: 100vh;
      background-image: url('/images/bg.png');
      background-repeat: repeat;
      background-position: top left;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      color: #382B16;
      padding: 20px;
      max-width: 100%;
    }

    h1, h2 {
      margin: 10px 0;
    }

    img {
      width: auto;
      max-width: 100%;
      height: auto;
      max-height: 85vh;
      object-fit: contain;
    }

    @media (min-height: 500px) {
      .container {
        height: 100vh;
        justify-content: center;
        box-sizing: border-box;
      }

        /* img {
          max-height: 50vh;
        } */
      }

    .story_pic {
      cursor: pointer;
    }

    .story_txt {
      font-size: 1.2em;
      text-align: justify;
      align-content: center;
      display:none;
      cursor:pointer;
    }

    .story_pic, .story_txt {
      height: 80vh;  /* a kép magassága */
      max-width: 720px; /* a kép maximális szélessége */
      box-sizing: border-box;
      overflow: auto; /* ha a szöveg nagyobb, legyen görgetősáv */
    }

    @media (max-width: 500px) {
      .story_txt, .story_pic {
        max-width: 100%;
      }
    }