/* Basic styles for a clean look */
body {
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 20px;
}

header {
  margin-bottom: 20px;
}

nav a {
  margin-right: 15px;
  text-decoration: none;
  color: #007acc;
}

nav a:hover {
  text-decoration: underline;
}

.container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 20%;
    background-color: #f0f0f0;
    padding: 20px;
}

.content {
    width: 80%;
    padding: 20px
}

.intro {
  margin-bottom: 20px;
}

#posts article {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
