html {
  height: 100%;
}
body {
  background-color: #333333;
  font-family: Merriweather;
  color: #CCCCCC;
}
header {
  text-align: center;
  font-family: MerriweatherSans;
  padding: 8px;
  margin: -8px -8px 0px -8px;
  background-color: #222222;
  box-shadow: 5px 5px 5px #111111;
}
header nav a {
  margin: 0px 4px 0px 4px;
}
main {
  margin: 8px auto;
  width: 60%;
}
@media screen and (max-width: 1000px) {main {
    width: 80%;
}}
main p {
  text-indent: 3%;
}
main pre {
  font-family: Merriweather;
  white-space: pre-wrap;
}
aside {
  padding: 8px;
  margin: 8px;
  width: calc(20% - 16px);
  float: right;
}
@media screen and (max-width: 1000px) {aside {
  float: none;
  width: calc(100% - 32px);
  border-left: 2px solid #CCCCCC;
  border-right: 2px solid #CCCCCC;
}}
footer {
  font-family: MerriweatherSans;
  text-align: center;
  background-color: #222222;
  padding: 8px;
  margin: 0px -8px -8px -8px;
  box-shadow: 5px -5px 5px #111111;
  clear: both;
}
footer table {
  width: 100%;
}
footer td {
  width: 50%;
}
h1, h2, h3, h4, h5, h6 {
  font-family: MerriweatherSans;
}
a {
  text-decoration: none;
  color: #EEEEEE;
}
a:hover:not(header h1 a) {
  text-decoration: underline;
}
#subheading {
  position: relative;
  top: -16px;
  letter-spacing: 4px;
}
#blognav {
  float: right;
  text-align: left;
  width: 15%;
  padding: 8px;
  margin: 8px;
  border-left: 2px solid #CCCCCC;
}
@media screen and (max-width: 1000px) {#blognav {
  float: none;
  width: calc(100% - 32px);
  border-left: 2px solid #CCCCCC;
  border-right: 2px solid #CCCCCC;
}}
.note {
  font-style: italic;
  font-weight: bold;
  margin-left: 3%;
  text-indent: 0%;
}
.indent {
  text-indent: 3%;
}
#gallery {
  text-align: center;
}
#gallery img {
  height: 200px;
  transition: scale 1.2s;
}
#gallery img:hover {
  scale: 1.1;
}
#modal {
  position: fixed;
  top: 0px;
  left: 0px;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.5);
  text-align: center;
  z-index: 99;
}
#modalImage {
  max-height: 80vh;
  max-width: 80vw;
  margin-top: 10vh;
}