#story {
  padding: 1rem;
  position: relative;
  width: 1440px;
  max-width: 100%;
  margin: 10em auto;
}

#story .storyBox {
  position: relative;
  max-width: 100%;
  z-index: 2;
}

#story .storyContainer {
  width: 1040px;
  max-width: 100%;
  text-align: center;
}

.storyDesktop {
  display: inline;
}
.storyMobile {
  display: none;
}

#story .storyHeader {
  position: absolute;
  top: 0;
  right: 30%;
  letter-spacing: 0.05rem;
  z-index: 1;
  transform: rotate(-5deg);
}

#story .storyHeader::before {
  content: "";
  background: url(../img/story-trailer/story_header_bg.png) center / 100% 100%
    no-repeat;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%) rotate(8deg);
  display: block;
  top: 60%;
  left: 50%;
  position: absolute;
  z-index: -1;
}

#story .storyArt {
  text-align: center;
  padding-top: 5rem;
}

#story .subHeaderContainer {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: -5rem;
  text-align: center;
}

#story .storySubheader {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding-left: 1rem;
  padding-right: 3rem;
  text-align: center;
}

#story h2.storySubheader {
  font-size: 2rem;
}

#story .storyContainer {
  position: relative;
  margin: auto;
}

.storyTextContainer {
  width: fit-content;
  margin: auto;
  position: relative;
}

#story .storyText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 80%;
  line-height: 3rem;
  text-align: center;
  display: grid;
  align-content: center;
  gap: 1.5rem;
}

#story .storyText p {
  /* margin-bottom: 2rem; */
}

@media screen and (max-width: 768px) {
  .storyDesktop {
    display: none;
  }
  .storyMobile {
    display: inline;
  }

}
@media screen and (max-width: 425px) {
  #story .storyText {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }
}