
body {
  margin: 0;
  background: #0aa0dc;
  color: #2b2a26;      
  font-family: sans-serif;
  line-height: 1.6;
}

#site {
  max-width: 1000px;
  margin: 3rem auto;
  background: #f4efe4;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  border-style: solid;
  border-width: 1px;
}

#navbar {
 display: flex;
 justify-content: center;
 align-items: center;
 padding: 1rem;
 background: #A3D78A;
 border-bottom: 1px solid #000000;
 font-weight: bold;
 gap: 1rem;
 border-top-left-radius: 20px;
 border-top-right-radius: 20px;
}

.nav-link {
 text-decoration: none;
 color: #000000;
 background: #C1E59F;
 padding: 0.5rem 2rem;
 border-radius: 5px;
 transition: background 0.2s ease;
}

.nav-link:hover {
 color: #ffffff;
 background: #30571e;
 transition: background 0.2s ease;
}

#layout {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 1rem;
  padding: 1rem;
  color: #5c5a54;
  align-items: stretch;
}

#sidebar-left, #sidebar-right {
  position: relative;
  background: #ede5d3;
  padding: 1rem;
  border-radius: 4px;
  color: #5c5a54;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

#sidebar-left > *, #sidebar-right > * {
  margin: 0;
}

#content {
  background: #faf7f0;
  padding: 1.25rem;
  border-radius: 4px;
  color: #2b2a26;
  border-style: dotted;
  border-width: 2px;
}

.bottom {
  position: absolute;
  margin-top: auto;
  bottom: 0;
  padding: 1rem;
}