
body {
  font-family: 'EB Garamond', serif;
  margin: 0;
  color: #2c1c0f;
  position: relative;
  overflow-x: hidden;
}

.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: url('../images/bg.png') center center no-repeat;
  background-size: cover;
  z-index: -1;
}

.banner-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.navbar {
  background-color: rgba(240, 220, 180, 0.95);
  position: fixed;
  top: 150px;
  width: 100%;
  z-index: 998;
  padding: 10px 0;
  border-bottom: 2px solid #aa8844;
}

.navbar ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  margin: 0 15px;
}

.navbar a {
  text-decoration: none;
  font-family: 'Cinzel Decorative', cursive;
  font-weight: bold;
  font-size: 18px;
  color: #4b2e0e;
}

main {
  padding-top: 260px;
  max-width: 960px;
  margin: 0 auto;
}

.page-content {
  padding: 20px;
}

.section {
  background: rgba(240, 220, 180, 0.50);  /* parchment tan with 50% opacity */
  border: 1px solid #aa8844;
  margin: 20px 0;
  padding: 15px;
  border-radius: 10px;
  color: #fdf5e6;  /* yellowish parchment-white */
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px 0;
}

footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: rgba(240, 220, 180, 0.5);
}
