body {
  margin: 0;
  padding: 0;
  background-image: url("../assets/picture.png");
  background-size: cover;
  background-attachment: fixed;
  color: #f3e7d0;
  font-family: Georgia, serif;
}

.page {
  width: 90%;
  max-width: 1200px;
  margin: 4rem auto;
  display: flex;
  gap: 4rem;
}

.sidebar {
  width: 220px;
  padding: 1rem;
  background: rgba(15, 10, 5, 0.85);
  border: 2px solid #e78104;
  height: fit-content;
}

.sidebar h1 {
  color: #e78104;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar a {
  color: #f3e7d0;
  text-decoration: none;
}

.blog {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post {
  background: rgba(15, 10, 5, 0.85);
  border-left: 4px solid #e78104;
  padding: 2rem;
  line-height: 0;
  white-space: pre-line;
}

.post h2 {
  color: #e78104;
}