a {
   color: #515151;
}

a:visited {
  color: #6d6952;
}

h1,h2,h3,h4,h5 {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

body {
  background-color: #f1faee;
  font-family: "VT323";
  color: #515151;
}

header {
  display: flex;
  flex-direction: column;
}

header h1 {
  font-family: "Jacquarda Bastarda 9", serif;
  /* font-family: "Workbench", sans-serif; */
  color: #515151;
  text-align: center;
  margin: 12px 0;
}

header img {
  display: block;
  margin: 0 auto;
}

#menu {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

#menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

#menu li:not(:nth-child(1)):before {
  content: "𓄧 ";
}

#menu li a:hover {
  background-color: #6d6952;
  color: #f1faee;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.post {
  border: 3px solid #515151;
  padding: 16px;
  width: 470px;
}

.post-title, #bookshelf ul .title {
  border-bottom: 2px solid #515151;
}

#bookshelf {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  box-sizing: border-box;
  width: min(800px, 90vw);
  margin: 0 auto;
}

#bookshelf ul {
  border: 3px solid #515151;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: start;
}

#bookshelf ul li {
  list-style: square inside;
}
