body {
  margin: 0;
  background: #000000; /*#2b1a12; donkere achtergrond */
  font-family: Georgia, serif;
  /*color: #3a1f0f;*/
  color: #4b1e0f;

  /*font-weight: bold;*/
}

.page {
  /*width: 800px;*/
  /*margin: 60px auto;*/
}

.scroll-header {
  position: relative;
  width: 100%;
}

/* 🔥 dit is je "hangende scroll" effect */
.scroll-top {
  width: 100%;
  display: block;

  filter: drop-shadow(0px 25px 25px rgba(0, 0, 0, 0.5));
}

/* 👇 tekst over de scroll */
.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* 👇 responsive font size */
  font-size: clamp(24px, 5vw, 64px);

  color: #4b1e0f;
  font-family: Georgia, serif;

  text-shadow:
    0 2px 2px rgba(0,0,0,0.5),
    0 0 10px rgba(0,0,0,0.3);

  pointer-events: none;
}

/* 👇 menu centreren en naar beneden schuiven */
.menu {
  position: absolute;

  left: 50%;
  transform: translateX(-50%);

  bottom: -10%;   /* 👈 schuift omhoog/omlaag binnen scroll */

  display: flex;
  gap: 20px;
}

/* parchment stuk eronder */
.content {
  background-image: url("rtext_background2.png");
  background-color: #e8d5a9;
  padding: 7% 13% 9% 13%;/*60px 40px 40px 40px; boven rechts onder links*/
  background-repeat: repeat-y;
  background-size: 100% auto;

  /* trek omhoog onder de scroll */
  margin-top: -50px;

  /* line-height: 1.6; */
  /* box-shadow:
    inset 0 0 25px rgba(0,0,0,0.2),
    0 10px 20px rgba(0,0,0,0.3);*/
  box-shadow: none;
text-shadow:
    0 0px 1px rgba(0,0,0,1);
  
  
 
}

.scroll-footer {
  position: relative;
  z-index: 2;
  margin-top: -70px;
}

.scroll-bottom {
  width: 100%;
  display: block;

  /* zelfde scroll, maar ondersteboven */
  /*transform: rotate(180deg);*/

  filter: drop-shadow(0 -25px 25px rgba(0, 0, 0, 0.5));
}

a {
  color: #6b1f12;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #9b2d17;
  text-decoration: underline;
}

.menu a {
  font-size: clamp(13px, 1.8vw, 20px);
  color: #4b1e0f;
  padding: 0.25em 0.5em;
  border-radius: 6px;
}

.menu a:hover {
  background: rgba(80, 35, 10, 0.15);
  text-decoration: none;
}

blockquote {
  margin-left: 40px;
  font-style: italic;
}

img {
  width: 80%;
  max-width: 100%;
}

.centered {
  display: block;
  margin: 20px auto;
}