
body {
  margin: 60px;
  font-family: 'Lars Bold Condensed', sans-serif;
  color: #ffffff;
  background: #ffffff;
}


@font-face {
  font-family: 'Lars Bold Condensed';
  src: url('fonts/Lars-BoldCondensedWeb.5bee049.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}


a {
  color: #000 !important;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
  line-height: 16px;
}

a:hover {
  color: rgb(179, 91, 72) !important;
  text-decoration: underline;
}


#title-text {
  color: #000;
  font: size 14px;
  text-decoration:solid;
}

@media (prefers-color-scheme: dark) {
  #title-text {
    color: #fff;
  }
}
#site-links {
  position: fixed;              
  left: 40px;
  top: 120px;

  width: 220px;
  max-height: calc(100vh - 160px); 

  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;

  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);

  overflow-y: auto;            
}
#site-links::-webkit-scrollbar {
  width: 6px;
}

#site-links::-webkit-scrollbar-track {
  background: transparent;
}

#site-links::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
}

#site-links::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.45);
}






@media screen and (max-width: 700px) {
  #site-links {
    display: none;
    position: absolute; 
    left: 20px;
    top: 80px; 
    width: calc(100% - 60px); 
    max-width: 300px;
  }

  #menu-button {
    display: inline-block;
  }

  #main-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  body {
    margin: 20px;
  }
}


@media screen and (min-width: 700px) {
  #menu-button {
    display: none;
  }
}

#site-links.active {
  display: block;
}


.block {
  margin-bottom: 22px;
  font-size: 11px;
}

.block-title {
  font-size: 12px;
  text-transform: lowercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
  color: #000 !important;
}

.block-items {
  margin-left: 12px;
}

.block-items a {
  display: block;
  color: #000 !important;
  opacity: 1 !important;
  padding: 4px 6px;
  background: rgba(255,255,255,0.9);
  margin-bottom: 2px;
  border-radius: 3px;
}

.block-items a:hover {
  color: rgba(0, 0, 0, 0.86) !important;
  background: rgb(255, 208, 208); 
}


#site-title {
  margin-bottom: 30px;
  font-size: 15px;
  letter-spacing: 0.4px;
  color: #ffffff !important;
}

#site-title div {
  display: inline-block;
  vertical-align: middle;
}


.teasers {
  font-size: 13px;
  margin-top: 6px;
  margin-bottom: 22px;
  color: #000 !important;
}

.teasers a {
  font-size: 13px;
  font-weight: bold;
  color: #000 !important;
}

.teasers .desc {
  font-weight: normal;
  color: #000 !important;
  opacity: 1 !important;
}


#menu-button {
  display: none;
  padding: 2px;
  border-radius: 3px;
 
  background: #ffffff;
  position: relative;
  z-index: 9999;
}

#menu-button:hover {
  cursor: pointer;
}

#menu-button .bars {
  width: 16px;
  height: 14px;
  background: linear-gradient(
    to bottom,
    #000 0%, #000 20%,
    #fff 20%, #fff 40%,
    #000 40%, #000 60%,
    #fff 60%, #fff 80%,
    #000 80%, #000 100%
  );
}


#main-image {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0 300px; 
  position: relative;
  z-index: 1;
}

#main-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #daa;
}


* {
  color: inherit;
}