/* RESET */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* BODY / DESK BACKGROUND */

body {
  background-color: #1a120d;
  background-image: url("images/writing-background.jpg");
  background-repeat: repeat;
  background-size: auto;
  color: #111;
  font-family: 'VT323', monospace;
}

/* PAGE WRAP */

.page-shell {
  width: 100%;
  min-height: 100vh;
  padding: 50px 20px 36px 20px;
}

/* PAPER */

.paper {
  width: min(100%, 850px);
  min-height: calc(100vh - 110px);
  margin: 0 auto;
  background-color: #f8f5ef;
  background-image: url("images/writing-page.jpg");
  background-repeat: repeat;
  background-size: auto;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.18),
    0 16px 40px rgba(0,0,0,0.38);
  padding: 72px 78px 44px 78px;
}

/* TITLE */

.writing-title {
  margin: 0 0 30px 0;
  text-align: center;
  font-family: 'VT323', monospace;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.05;
  font-weight: normal;
  letter-spacing: 0.04em;
  color: #111;
}

/* HEADER IMAGE */

.header-image-wrap {
  width: 100%;
  margin: 0 0 34px 0;
  display: flex;
  justify-content: center;
}

.header-image {
  width: 75%;
  max-width: 620px;
  display: block;
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: 0 6px 18px rgba(0,0,0,0.16);
  object-fit: cover;
}

/* BODY */

.writing-body {
  width: 100%;
  font-family: 'VT323', monospace;
  font-size: 1.25rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #111;
}

.writing-body p {
  margin: 0 0 1.4em 0;
}

/* BODY IMAGES */

.body-image-wrap {
  width: 100%;
  margin: 1.8em 0 2em 0;
  display: flex;
  justify-content: center;
}

.body-image {
  width: 60%;
  max-width: 520px;
  display: block;
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
  object-fit: cover;
}

/* IMAGE SHAPES */

.image-landscape {
  aspect-ratio: 16 / 10;
}

.image-square {
  aspect-ratio: 1 / 1;
}

.image-portrait {
  aspect-ratio: 4 / 5;
}

/* END IMAGE */

.end-image-wrap {
  width: 100%;
  margin: 2.2em 0 0 0;
  display: flex;
  justify-content: center;
}

.end-image {
  width: 60%;
  max-width: 520px;
  display: block;
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
  object-fit: cover;
}

/* FOOTER */

.site-footer {
  width: min(100%, 850px);
  margin: 18px auto 0 auto;
  text-align: center;
  padding: 0 18px 16px 18px;
  font-family: "Times New Roman", Times, serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* MOBILE */

@media (max-width: 900px) {
  .paper {
    padding: 56px 48px 38px 48px;
  }

  .header-image {
    width: 85%;
  }

  .body-image,
  .end-image {
    width: 75%;
  }
}

@media (max-width: 700px) {
  .page-shell {
    padding: 26px 10px 24px 10px;
  }

  .paper {
    padding: 42px 24px 30px 24px;
  }

  .writing-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
    margin-bottom: 24px;
  }

  .writing-body {
    font-size: 1rem;
    line-height: 1.8;
  }

  .header-image,
  .body-image,
  .end-image {
    width: 100%;
  }

  .site-footer {
    font-size: 0.8rem;
    line-height: 1.7;
  }
}

/* WORKS CITED */

.works-cited {
  margin-top: 70px;
  text-align: center;
}

.works-cited-title {
  font-family: 'VT323', monospace;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 26px;
  display: block;
}

.works-cited-list {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  white-space: pre-line;
}