body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #fdfaf6;
  color: #333;
}

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

.menu-lateral {
  width: 250px;
  background-color: #f4e1e1;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.menu-lateral h2 {
  font-family: 'Courier New', monospace;
  margin-bottom: 20px;
}

.menu-lateral nav a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #6b2f3f;
}

.menu-lateral nav a:hover {
  font-weight: bold;
}

.conteudo {
  flex: 1;
  padding: 30px;
}

.postagem {
  margin-bottom: 40px;
}

.imagem-postagem {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin-top: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .menu-lateral {
    width: 100%;
    text-align: center;
  }
}