body{
  font-family: 'monomakh', serif;
  background-image: url('../assets/backgrounds/wood-imgur-dt.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #171614;
  font-size: 15px;
}

@font-face {
  font-family: 'monomakh';
  src: url("../library/lib-assets/Monomakh-Regular.ttf") format("truetype");
}

main {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  }
  
header {
  /*background-color: #9A8873;*/
  background-image: url('../library/log-assets/denny-muller-dt-v2.png');
  border: 2px solid #3A2618;
  width: 500px;
  margin: 5px 5px 25px 5px;
  padding: 10px;
  font-size: 26px;
  text-align: center;
  text-shadow: 1px 2px 5px white;
  }
  
/*section {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  margin: 25px;*/
/*  max-height: 700px;*/
/*  overflow: scroll;*/
/*  scrollbar-color: #37423d #000;*/
/*  }*/
  
footer {
  background-color: #9A8873;
  border: 2px solid #3A2618;
  width: 365px;
  margin: 25px;
  padding: 5px;
  font-size: 13px;
  text-align: center;
  }
  
#nav{
  max-width: 370px;
  }
  
a {
  text-decoration-style: wavy;
  color: #754043;
  }
  
a:hover {
  font-style: italic;
  }
  
h1 {
  font-size: 20px;
  }
  
ul{
  text-align: left;
  padding: 0px;
  margin: 0px;
  }

li{
  list-style-type: none;
  padding-left: 10px;
  margin-top: 5px;
  text-align: left;
  }
  
.box {
  background-color: #9A8873;
  border: 2px solid #3A2618;
  max-width: 600px;
  margin: 5px;
  padding: 10px;
  text-align: center;
  }
  
.rows {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 5px 0px;
  }
  
.category-box {
  background-color: #9A8873;
  border: 2px solid #3A2618;
  border-radius: 5px;
  box-sizing: border-box;
  width: 690px;
  height: 35px;
  margin: 5px;
  text-align: center;
  font-size: 24px;
  }
  
.category-box-text {
  margin-top: 0px;
  }
  
.section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 25px;
  max-height: 700px;
  overflow: scroll;
  scrollbar-color: #37423d #000;
  }

.cover {
  max-width: 160px;
  }
  
.thoughts {
  padding: 0px 10px;
  background-color: #9A8873;
  border: 2px dashed #3A2618;
  border-radius: 30px;
  max-width: 600px;
  margin: 25px;
  text-align: center;
  }
  
.title {
  font-size: 20px;
  color: #37423d;
  margin: 10px auto -10px auto;
  }
  
/*RESPONSIVENESS*/

@media only screen and (max-width: 800px) {
  header {
    max-width: 300px;
    }
  
  .box {
    max-width: 300px;
    }
    
  .category-box {
    max-width: 300px;
    }
    
  .section-container {
    max-height: 300px;
    }
    
  .rows {
    flex-wrap: wrap;
    }
  
  .thoughts {
    max-width: 300px;
    }
    
  #nav {
    max-width: 300px;
    }
    
  }