/*general basics for the whole site*/
body {/*background*/
  background-color: #CFE6CF;
  }
a {   /*link*/
  color: #182F18;
  text-decoration: underline dotted #ff8000;
  cursor: pointer;
  }
p {   /*text*/
  color: #182F18;
  font-family: verdana;
  overflow-wrap: break-word;
  line-height: 2;
  cursor: crosshair;
  }
h1 {    /*biggest heading*/
  color: #182F18;
  font-family: verdana;
  overflow-wrap: break-word;
  line-height: 2.5;
  }
h3 {    /*third-largest heading/subtitle*/
  color: #182F18;
  font-family: verdana;
  overflow-wrap: break-word;
  line-height: 2;
  }
  
ul {/*horizontal navigation bar*/
  list-style-type: none;
  font-family: verdana;
  margin: 0;
  padding: 0;
  width: 100px;
  background-color: #93c893;
  position: fixed;
  height: 100%;
  overflow: auto;
}
  li a {
    display: block;
    color: black;
    padding: 8px 16px;
    text-decoration: none;
  }  
  li a .active {
    background-color: #04AA6D;
    color: white;
    cursor: context-menu;
  }
  li a:hover:not(.active) {
    background-color: #CFE6CF;
    color: black;
  }

/*classes start with a '.' Classes can be referenced in html sheet by using (tag class="name")*/
.date{/*special text is highlighted*/
 margin: 5px;
 font-family: yu gothic light;
 color: #C76A30;
 background-color: #F4E8C3;
}
.button { /*pale green button*/
  background-color: #EEF6EE;
  border: outset;
  border-color: #F4E8C3;
  border-radius: 3px;
  color: #182F18;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: verdana;
  font-size: 16px;
  margin: 4px 2px;
  }
.buttondisable{
  background-color: #93c893;
  opacity: 0.5;
  border: inset;
  border-color: #F4E8C3;
  border-radius: 3px;
  color: #182F18;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: verdana;
  font-size: 16px;
  margin: 4px 2px;
}
.page {/*basic settings for text posts*/
  background-color: #FBF7EA;
  border: 1px outset #F4E8C3;
  margin: 30px;
  padding: 15px;
  
 }
.framework{/*3column 2 row template for main style. Follow the grid template to plan format.*/
  display:grid;
  grid-template-areas:
  "header header"
  "menu content"
  "footer footer";
  grid-template-columns: 1fr 5fr;
  gap: 3px;
  padding:5px;
 }
    .frameworkHeader{
      grid-area: header;
      text-align: center;
      transform: skew(1deg, -1deg);
    }
    .frameworkMenu{
      grid-area: menu;
      opacity: 0.5;
      text-align: left;
      font-family: verdana;
      font-size: 16px;
      padding: 5px;
    }
    .frameworkContent{
      grid-area: content;
      margin: 10px;
      padding: 5px;
    }
    .frameworkFooter{
     grid-area: footer;
     text-align: center;
    }
.splash {/*row display, clickable squares*/
  display: grid;
  grid-template-areas:
  "top desc"
  "top desc"
  "top desc"
  grid-template-columns 1fr auto;
  gap: 5px;
  padding: 3px;
 }
    .splashTop {
    grid-area: top;
    float: left;
    background-color: #EEF6EE;
    border: dotted 2px;
    border-radius: 6px;
    border-color: #04AA6D;
    padding:20px 10px 10px 10px;
    font-family: verdana;
  	color: #182F18;
  	text-align: center;
    width: 200px;
    height: 200px;
    }
    .splashDesc {
    grid-area: desc;
    float: right;
    background-color: #93c893;
    border: 2px;
    border-style: none none none solid;
    border-color: #04AA6D;
    padding: 15px;
    font-family: verdana;
    color: #182f18;
    height: 200px;
    width: 100%;
    }