body {
  background:#111 url();
  color: #A48C72;
  font-family: garamond, calibri, verdana, sans-serif;
  font-size:14px;
  letter-spacing:0.5px;
  text-shadow:0px 0px 1px #666;
  line-height:14px;
  margin: 0;
  padding: 20px;
  text-align:justify;
}

a:link,a:visited,a:active {color: #EBD2B4; text-decoration: none;}
a:hover { color: #CB9C67;}

::-webkit-scrollbar-thumb {
  background-color: #CB9C67;
}
::-webkit-scrollbar {
  width: 5px; height: 0px; background: transparent;
}

.container {
  width: 90%;
  max-width: 600px;
  margin: 40px auto;
  background: linear-gradient(to bottom, #3a2f25 0%, #2e241c 100%);
  border: 1px solid #000;
  box-shadow: 0 0 25px rgba(235, 217, 195, 0.4);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.top {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

.main-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #444 0%, #1d1d1d 100%);
}

header {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
  border-bottom: 1px dotted #BB8959;
}

header img {
  display: block;
  width: 100%;
  height: auto;
}

.site-name {
  position: absolute;
  bottom: 76px;
  right: 230px;
  font-family: georgia, cursive;
  font-size: 18px;
  color: #CB9C67;
  text-shadow: 1px 1px 0px #333;
  font-style: italic;
  letter-spacing: 3px;
  pointer-events: none;
}

.title {
  font:bold 16px 'Doto', georgia, cursive;
  color: #CB9C67;
  margin: 0 0 6px 0;
  padding-bottom: 4px;
  border-bottom:1px dotted #856F57;
  letter-spacing:3px;
}

nav {
  background:#29211D;
  border-bottom: 1px dotted #BB8959;
  text-align: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

nav li {
  display: inline-block;
}

nav a {
  text-transform:lowercase;
  font-style:italic;
  letter-spacing:2px;
  font-size: 16px;
  padding: 4px 10px;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

main {
  flex: 1;
  padding: 10px 12px;
  background: linear-gradient(to bottom, #111 0%, #29211D 100%);
  position: relative;
}

aside {
  width: 160px;
  background: linear-gradient(to bottom, #111 0%, #29211D 100%);
  border-left: 1px dotted #BB8959;
  padding: 10px;
  box-sizing: border-box;
}

aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

aside li {
  margin: 6px 0;
  padding: 4px;
  background: rgba(255, 191, 105, 0.05);
  border-radius: 5px;
  transition: background 0.2s ease, transform 0.2s ease;
}

aside li:hover {
  background: #333;
}

aside a:link,
aside a:visited,
aside a:active {
  color: #F5B97A;
  text-decoration: none;
}

footer {
  background: linear-gradient(to right, #1e1e1e 0%, #131313 100%);
  text-align: center;
  padding: 8px 0;
  font-size:10px;
  border-top: 1px dotted #BB8959;
  position: relative;
}

@media (max-width: 700px) {
  .top {
    flex-direction: column;
  }

  .site-name {
    font-size:20px;
    position: absolute;
    bottom: 13px;
    right: 20px;
  }

  aside {
    width: 100%;
    border-left: none;
    border-top: 1px dotted #BB8959;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 8px;
  }

  nav a {
    font-size: 11px;
    padding: 4px 8px;
  }

  .container {
    width: 95%;
    margin: 20px auto;
  }
}
