

@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro&family=Quicksand&family=Roboto:wght@300&display=swap');

 em {
  font-style: italic;
  font-weight: inherit;
 }   

* {
  margin: 0;
  padding: 0;  
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  box-sizing: border-box;
}

ul {
  list-style-position: outside;
  padding-left: 1rem;
}
li {
  margin-bottom: .5rem;
}

main {
  margin-bottom: 2rem;
}

:root {
  font-size: 16px;

}

.max-width {
  max-width: 100%;
}

.clip {
  overflow: hidden;
}
body {
  overflow: auto;
}


p {
  margin-bottom: 1rem;
  line-height: 1.3em;
  text-align: justify;
}


h1, h2, h3 {
  font-family: 'Quicksand', sans-serif;
  
}

h1 {
  font-size: 2.5rem;
  font-weight: normal;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-weight: bold;
  margin-bottom: .5rem;
}

h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: .5rem;
}

.wrap.page {
    margin: 0 auto;
}

.page.wrap {
  width: 850px;
}




a.dark  {
  color: #ffe354;
  font-weight: bold;
}

a.dark:visited {
  color: white;
}

a.dark:hover {
  color: white;
  
}

figcaption, .caption {
  font-size: .8rem;
  font-style: italic;
}


.dark-fill {
  width: 100%;
}


.tri-top {
      width: 0;
      height: 0;
      border-bottom: 50px solid #2d2d2d;
      border-right: 100vw solid transparent;
      overflow: hidden;
}
.tri-bottom {
      width: 0;
      height: 0;
      border-top: 100px solid #2d2d2d;
      border-right: 100vw solid transparent;
      overflow: clip;
}

.flex {
  display: flex;
  
}

.column {
  flex-direction: column;
}

.row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-space-between {
  justify-content: space-between;
}

.flex-space-evenly {
  justify-content: space-evenly;
}

.flex-end {
  align-self: end;
}

.flex-start {
  align-self: start;
}

.p33 {
  width: 33%;
}


.p25 {
  width: 25%;
}

.p40 {
  width: 40%;
}

.p50 {
  width: 50%;
}


.p60 {
  width: 60%;
}
.p100 {
  width: 100%;
}

.art-item {
  
  padding: 10px;
}

.read-more {
  line-height: 1.8em;

}

.art-item h3 {
  margin-bottom: 1rem
}
.dark-fill {
  background-color: #2d2d2d;
  color: white;
}

section h2 {
  padding-top: 30px;
  padding-bottom: 10px;
}

#site-nav {
  justify-content: space-between;
  padding-top: .4rem;
  padding-bottom: .4rem;
}
#site-nav ul {
  list-style-type: none;
}
#site-nav {
  border-bottom: 2px solid black;
}

#site-nav ul li {
  margin-right: .5rem;
}


#site-nav a {
  text-decoration: none;
}
#site-nav a:link {
  color: black;
}
#site-nav a:hover {
  color: #757474;
}

#site-nav a:visited {
  color: black;
}

div.highlight {
  padding: 20px;
  border-radius: 5px;
  margin: 2rem 0;
  overflow: auto;
  width: 100%;
}

code {
  font-family: 'Anonymous Pro', monospace;
  font-size: .95rem;
}

@media screen and (max-width: 900px) {  
  .p50, .p60 {
    width: 100%;
  }
  .page {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .page.wrap {
    width: 500px;
  }
  div.highlight {
    margin: 0;
  }

}

@media screen and (max-width: 500px) {
  .page.wrap {
    width: 100%;
   
  }
  .page {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .wrap.page {
      margin: 0;
  }


}

