@font-face {
  font-family: "MaruBuri";
  src: url("../public/font2.woff2");
}

body {
  margin: 0;
  width: 100%;
  font-family: 'MaruBuri', serif;
  background-image: url('../storyline/background.webp');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #333;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding-top: 2em;
  padding-bottom: 2em;
}

.manuscript {
  position: relative;
  max-width: 800px;
  margin: auto;
  padding: 2em;
  text-align: justify;
  font-size: 1.5em;
  line-height: 2em;
  background-color: #fff;
  border: 2px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-image: repeating-linear-gradient(to bottom,
      transparent 0,
      transparent calc(2em - 1px),
      #E13E43 calc(2em - 1px),
      #E13E43 2em);
  padding-left: 3em;
  background-size: 100% 2em;
  background-origin: content-box;
  background-position: left top;
}

.manuscript::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 1px;
  background-color: #E13E43;
}

h1 {
  text-align: center;
  font-size: 3em;
  margin-bottom: 0.5em;
}


.photo-frame {
  display: inline-block;
  background: #fff;
  max-width: 80%;
  height: 12em;
  border: 2px solid #eee;
  box-shadow: 2px 6px 18px rgba(0, 0, 0, 0.15), 0 1px 0 #ccc;
  padding: 1em 1em 1em 1em;
  margin-top: 0.56em;
  margin-bottom: 0.56em;
  position: relative;
  border-radius: 8px;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.bottomText {
  text-align: center;
  margin-top: 5em;
}

a {
  color: #333;
}


@media (max-width: 650px) {
  .manuscript {
    font-size: 1.2em;
    line-height: 1.6em;
    padding: 1.6em 1.6em 2em 2em;
    background-size: 100% 1.6em;
    background-image: repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(1.6em - 1px),
      #E13E43 calc(1.6em - 1px),
      #E13E43 1.6em
    );
  }

  h1 {
    font-size: 1.5em;
  }

  .photo-frame {
    margin-top: 0.65em;
    margin-bottom: 0.65em;
  }

  .manuscript::before {
    left: 20px;
  }
}
