* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-image: url("../images/Backround.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}






/* STORY SECTION */
.story-section {
  width: 100%;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 60px 20px;

  /* IMPORTANT: transparent so body bg shows */
  background: transparent;
}

/* CONTAINER */
.story-container {
  width: 100%;
  max-width: 900px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

/* TITLE */
.story-title {
  margin-bottom: 25px;
}

.story-title img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

/* CONTENT */
.story-content img {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: block;
}


.story-contents {
  width: 100%;
  display: flex;
  justify-content: flex-start; /* pushes to LEFT */
  align-items: flex-start;
}

.story-contents img {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: block;
  margin-top: -230px;
  margin-left: 0;
}

@media (max-width: 768px) {
  .story-contents {
    justify-content: center; /* center on tablets */
  }

  .story-contents img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .story-contents {
    justify-content: center; /* center on mobile */
  }

  .story-contents img {
    width: 100%;
    max-width: 100%;
  }
}


/* DESKTOP POLISH */
@media (min-width: 1024px) {
  .story-section {
    padding: 80px 20px;
  }

  .story-title img {
    max-width: 420px;
  }

  .story-content img {
    max-width: 800px;
  }
}

/* TABLET */
@media (max-width: 768px) {
  .story-section {
    padding: 50px 15px;
  }

  .story-title img {
    max-width: 300px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .story-section {
    padding: 40px 12px;
  }

  .story-title img {
    max-width: 240px;
  }

  .story-content img {
    max-width: 100%;
  }
}