#blog-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

#blog-index, #blog-post {
  width: 100%;
  max-width: 720px;
}

#blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 720px;
  padding: 20px 0 0;
}

#blog-header h1 {
  color: #cba6f7;
  margin: 0;
  font-size: 28px;
}

#blog-header a {
  color: #89b4fa;
  text-decoration: none;
  font-size: 14px;
}

#blog-header a:hover {
  color: #b4befe;
  text-decoration: underline;
}

#post-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#post-list li {
  margin: 0;
}

.post-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background-color: #1e1e2e;
  border: 3px groove #45475a;
  border-radius: 20px;
  color: #cdd6f4;
  font-family: inherit;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  cursor: inherit;
  transition: background 0.01s, border-color 0.01s;
  box-sizing: border-box;
}

.post-btn:hover {
  background: #313244;
  border-color: #89b4fa;
}

.post-btn:visited {
  color: #cdd6f4;
}

#nav-links {
  display: flex;
  gap: 16px;
  margin: 20px 0;
}

.nav-btn {
  display: inline-block;
  padding: 8px 18px;
  background-color: #1e1e2e;
  border: 2px groove #45475a;
  border-radius: 12px;
  color: #cdd6f4;
  font-family: inherit;
  font-size: 14px;
  text-decoration: none;
  cursor: inherit;
  transition: background 0.01s, border-color 0.01s;
}

.nav-btn:hover {
  background: #313244;
  border-color: #89b4fa;
}

#blog-welcome {
  margin: 16px 0 24px;
  color: #a6adc8;
}

#blog-post {
  padding-bottom: 40px;
}
