html {
 font-size: 16px;
 margin:    0 auto;
 max-width: 1920px;
}

body {
 font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

.mainHeader {
  position: sticky;
  left:  0;
  top:  0;
  width: 100%;
  z-index: 1000;
}

.overall {
  margin: auto;  
}

nav {
  display: grid;
}

.headerBlock {
  background-color: #138005;  /*Was fa8525 */
  background-size: cover;
  padding: 0.2rem 0;

  /* Grid styles */
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}


.headerBlock h1 {
  font-weight:  600;
  font-size: 3rem;
  padding: 0.2rem 0;
  margin: 0;  
  color:  white;
  letter-spacing: 1px;
}

.headerBlock a {
  text-decoration: none;
}

.mainBlock {
  display: grid;
  grid-template-columns: 1fr;
  margin: 2% 5%;

}

.mainBlock.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2% 5%;

}

.itemArticle {
  margin: 4px 6px;
  padding: 4px 6px;
}

.itemArticle p {
  font-size: 1.4rem;
}

.blogPost {
  width: 98%;
  background-color: #f5faf5;
  border: 1px solid #138005;
  box-shadow: 4px 6px 5px #138005;
  padding: 6px 8px;
  margin: 8px 4px;
}

.blogPost h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #138005;  
}

.blogPost h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.blogPost p, .blogPost li {
  font-size: 1.3rem;
  font-weight: normal;

}

.blogPost img {
  height: 400px;
  clear: left;
  padding: 12px;
}

.catDisplay {
 text-align: right;
 float:right;
 width: 50%;
 font-style:italic;
 font-size:1.2rem !important;
 clear:right;
}

.catDisplay span {
 font-size:1rem;
}

footer {
 background-color: #138005;
 color: white;
 min-height:40px;
 display: grid;
 grid-template-columns: 1fr 1fr 1fr;
 padding: 4px 12px; 
}

footer a {
 color: white;
 text-decoration: none;
}

.bPageLink {
  text-align: right;
  margin-right: 1rem;
}

.bPageLink a {
  border: 1px solid #000000;
  padding: 3px 4px;
  background-color: #b1ccbb;
  color: black;
  font-size: 1.2rem;
}

.bPageLink a:hover {
  background-color: black;
  color: white;
}

table td {
  font-size: 1.3rem;
  font-weight: normal;
  padding: 3px 4px;  
}

.blogButton {
  margin: 4px 3px;
  padding: 4px 12px;
  font-size: 1.3rem;
  background-color: #138005;
  color: white;
  cursor: pointer;
  box-shadow: 3px 3px 2px #AAAAAA;
}

.blogButton:hover {
  background-color: #bfc2be;
  color:  #000000;  
}

input[type="text"], input[type="date"], input[type="time"], input[type="email"], textarea, input[type="password"] {
 background-color: #f5faf5; 
 font-size: 1.4rem;
 font-family: 'Roboto', sans-serif;
 padding:  ;
}

input[type="number"] {
 background-color: #f5faf5; 
 font-size: 1.4rem;
}

select {
 background-color: #f5faf5; 
 font-size: 1.4rem;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
 max-width:  90%;
}

.splitBit {
 display: grid;
 grid-template-columns: 1fr 1fr;
  
}