:root {
  --bg-color: #000000;
  --fg-color: black;
  --accent-color: #c29460;
}

body {
  color: #322e3a;
  background-color: #f1ebe6;
  font-family: Sylfaen;
  font-size: 22px;
}

main{
  max-width: 800px;
  margin: 0 auto;
}

td {
  color: #322e3a;
  font-family: Sylfaen;
  font-size: 11px;
}

.sticker {
position: absolute;}

.heading {
  font-size: 13px;
  font-family: Sylfaen;
}

.hidden {
  margin: 0px;
  padding: 0px;
  width: 0px;
  height: 0px;
  position: absolute;
  display: none;
}

.blog-post {
  font-size: 12px;
  width: 100%;
  border-bottom: 2px dotted black;
  margin-bottom: 20px;
}

.blog-post h3 {
  font-size: 22px;
}

.blog-post a {
  text-decoration: none;
  display: block;
}

.blog-post a:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
}

.title-container {
  width: 100%;
  position: relative;
}

.title-container a:hover {
  background: rgba(0,0,0,0);
}

.title-container img {
  width: 100%;
  border-bottom: 2px solid black;
}

.title-container h1 {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
}

.desc {
  max-width: 550px;
  margin: 0 auto;
  padding-top: 5px;
  text-align: center;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
  font-weight: normal;
}

.accent {
  font-size: 14px;
  font-family: Sylfaen;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 10px;
  margin-bottom: 50px;
  margin-top: 20px;
}

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

.navbar li {
  margin: 0 10px;
}

.navbar li:not(:last-child)::after {
  content: " | ";
  margin-left: 10px;
}

 /* unvisited link */
a:link {
  color: #c29460;
}

/* visited link */
a:visited {
  color: #985406;
}

/* mouse over link */
a:hover {
  color: #6f2b2b;
}

/* selected link */
a:active {
  color: #985406;
} 