/* Full-page background image */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 20px;
}

/* White rectangle content area */
.content {
  max-width: 800px;
  margin: 40px auto;
  padding: 70px;
  background: rgba(255, 255, 255, 1.0);
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  font-family: Garamond;
  line-height: 1.6;
}

ul {
  list-style-type: none;   /* options: disc, circle, square, none */
}

h1 {
  text-align: center;
  font-family: Garamond;
  font-variant: small-caps;
  font-weight: 300;
  letter-spacing: 4px;
}

h1::after {
  content: "";
  display: block;
  width: 75%;               /* line is half the heading width */
  margin: 0.5em auto 0;     /* centers the line */
  border-bottom: 1px solid rgb(243, 192, 26);
}

blockquote {
  border-left: 3px solid rgb(128, 147, 111); /* vertical bar on the left */
  padding-left: 20px;    /* spacing between bar and text */
}

.background {
  background: url('/assets/images/background.webp') no-repeat center center fixed;
  background-size: cover;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

/* Navbar styling */
nav {
  text-align: center;
  margin-bottom: 20px;
}
nav a {
  margin-right: 15px;
  margin-left: 15px;
  text-decoration: none;
  color: #333;
}
nav a:hover {
  text-decoration: underline;
}