body {
  margin: 0;
  font-family: 'Lekton', sans-serif;
  background: #f8f5f0 url('images/paper-texture.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #4e4b42;
  display: flex;
}

nav {
  width: 160px;
  background-color: #dfd3c3;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  border-right: 2px solid #c0b29c;
}

nav a {
  margin: 10px 0;
  padding: 10px;
  text-decoration: none;
  color: #3b3228;
  background: #f6eee3;
  border-left: 6px solid #b89d8d;
  border-radius: 0 5px 5px 0;
  transition: all 0.3s;
}

nav a:hover {
  background: #fff8f0;
  transform: translateX(5px);
}

main {
  margin-left: 180px;
  padding: 40px;
  max-width: 800px;
}

section {
  margin-bottom: 60px;
}

.journal-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
  
  
.journal-item {
  border: 1px solid #cbbeb3;
  padding: 10px;
  background: #fffdf8;
  border-radius: 8px;
  width: calc(50% - 20px);
  box-sizing: border-box;
  }

h1, h2 {
  font-weight: normal;
}

.title_Journal {
 font-weight: bold;
 color: black;
}

.shop-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.shop-item {
  border: 1px solid #cbbeb3;
  padding: 10px;
  background: #fffdf8;
  border-radius: 8px;
  width: calc(50% - 20px);
  box-sizing: border-box;
}

.shop-item button {
  background-color: #b89d8d;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.shop-item button:hover {
  background-color: #a48472;
}

#cart {
  margin-top: 20px;
  padding: 10px;
  background: #f0e7dd;
  border: 1px solid #cbbeb3;
  border-radius: 8px;
}