@font-face {
  font-family: routedGothic;
  src: url("/assets/fonts/routed-gothic.ttf");
}
body, html {
  height: 100%;
  font-family: "Open Sans", sans-serif;
  color: #050505;
  margin: 0px;
}

a {
  text-decoration: none;
}

.headTitle {
  font-family: routedGothic;
  font-size: 64px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: -1px -1px darkgray;
}

.sbSectTitle {
  /*  font-weight: bold; */
  font-family: routedGothic;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}

.footerText {
  font-size: 0.8em;
}

.sideBarBlock {
  border: 1px solid hsl(120, 100%, 20%);
  border-radius: 10px;
  padding: 5px 20px;
  margin: 5px;
  box-shadow: 5px 5px 10px LightGray;
}

.contentBlock {
  border: 1px solid LightGray;
  border-radius: 3px;
  padding: 5px 20px;
  margin: 5px 10px 5px 5px;
  box-shadow: 1px 1px 5px LightGray;
  height: max-content;
}

div.contentBlock p a {
  font-weight: bold;
}

div.contentBlock h2 {
  font-family: routedGothic;
  font-weight: bold;
  padding: 0px 11px;
}

li.articleList {
  padding-bottom: 10px;
}

div.contentBlock p a.nowFooter {
  font-weight: normal;
}

.hatTip {
  font-style: italic;
}

.postFooter {
  font-size: 0.8em;
}

.homeTwenty {
  text-align: center;
  padding: 10px 0px 0px 0px;
}

blockquote {
  font-style: italic;
  border-left: 10px solid DarkGreen;
  padding-left: 15px;
}

iframe.youtube {
  margin: 20px auto auto;
  display: block;
}

img {
  margin: auto;
  display: block;
}

hr.postFootHR {
  border-style: dotted none none none;
  border-width: 1px;
  padding: 0;
}

a.articleIndexLink {
  font-weight: bold;
}

.archiveTitle {
  /*    text-align: center; */
  padding-left: 27px;
  font-family: routedGothic;
  text-transform: uppercase;
}

.PCgrid { /* main grid container */
  display: grid;
  grid-template-areas: "lgutter banner banner rgutter" "lgutter sidebar content rgutter" "lgutter footer footer rgutter";
  grid-template-rows: 120px 1fr 50px;
  grid-template-columns: auto 275px 725px auto;
  min-height: 100%;
}

.topBanner {
  grid-area: banner;
  background-color: DarkGreen;
  border-bottom: 8px ridge DarkGray;
  text-align: center;
}

.sideBar {
  grid-area: sidebar;
  display: grid;
  grid-auto-flow: row;
  grid-auto-rows: min-content;
  margin: 10px 0px;
}

.contentFrame {
  grid-area: content;
  display: grid;
  margin: 10px;
  align-content: start;
}

.footBanner {
  grid-area: footer;
  border-top: 1px dotted #050505;
  text-align: center;
}

/*# sourceMappingURL=pcstyle.css.map */