body {
  background: #1a1a1a;
  color: #d0d0d0;
  font-family: 'UnifrakturCook', 'UnifrakturMaguntia', serif;
  margin: 0;
  padding: 0;
  text-align: center;
}
header {
  padding: 20px;
}
header img {
  max-width: 200px;  /* 👈 adjust this number until the logo looks right */
  height: auto;      /* keeps aspect ratio */
  display: block;
  margin: 0 auto;
  border: none;
}
.nav {
  background: #1a1a1a;
  padding: 10px;
}
.nav a {
  color: #d0d0d0;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 18px;
}
.nav a:hover { text-decoration: underline; }
.main {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
h2 { color: #fff; font-size: 28px; }
blockquote {
  font-family: serif;
  color: #888;
  margin: 20px;
  font-style: italic;
}
footer {
  text-align: right;
  padding: 10px 20px;
  background: #1a1a1a;
}
footer a {
  color: #000;
  margin-left: 12px;
  text-decoration: none;
  font-weight: bold;
}
footer a:hover { text-decoration: underline; }
.center { text-align: center; }
.bold { font-weight: bold; font-size: 20px; }
ul.shows { list-style: disc; margin-left: 40px; }
.error-bg {
  background: url('images/404.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.error-bg h1 {
  font-size: 80px;
  margin: 0;
}
.error-bg p {
  font-size: 20px;
  margin: 10px 0;
}
.error-bg a {
  color: #fff;
  text-decoration: underline;
  font-size: 18px;
}
