body {
  font-family: "Calibri";
  font-weight: normal;
  background-color: #121212;
  color: white;
  border-color: gray;
  text-decoration-color: white;
  }

h1 {
  text-align: left;
  font-family: "Calibri";
  font-size: 2.5em;
  color: white;
  }

h2 {
  font-family: "Calibri";
  font-size: 2em;
  }

h3 {
  font-family: "Calibri";
  font-size: 1.75em;
  padding-top: 1vw;
  padding-bottom: 1vw;
  }

p {
  font-family: "Calibri";
  font-size: 1em;
  word-wrap: normal;
}

pre {
  font-family: "Calibri";
  font-size: 1em;
  word-wrap: normal;
}

.grid-container {
  display: grid;
  grid-template-areas:
  'extra header'
  'sidebar content-block'
  'sidebar content-block';
  grid-column-gap: 0.5em;
}

.extra {
  grid-area: extra;
  width: 15vw;
  height: auto;
}

.header {
  grid-area: header;
  width: 70vw;
  height: auto;
  border-bottom-style: solid;
}

.sidebar {
  grid-area: sidebar;
  width: 15vw;
  height: auto;
  border-style: none;
  margin-left: 1vw;
  padding-right: 1vw;
}

.sidebar-sticky {
  position: sticky;
  top: 0;
  max-height: 65vh;
  overflow: auto;
}

.sidebar-title {
  border-bottom-style: solid;
}

.content {
  grid-area: content-block;
  width: 70vw;
  height: auto;
  border-style: none;
}

.photoblock {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1vw;
}

.image {
  width: 100%;
  max-height: auto;
  border-style: solid;
  border-width: thin;
  border-color: #DDDDDD
}

.image-caption {
  width: 80vw;
  padding-bottom: 1vw;
}

.image-caption > p {
  font-family: "Calibri";
  font-size: 1em;
  word-wrap: normal;
  border-bottom-style: solid;
  border-bottom-width: thin;
  padding-bottom: 1vw;
}

.dark-mode-button {
  height: auto;
  width: auto;
  text-align: center;
  vertical-align: middle;
}

button {
  border-radius: 5px;
  border-color: inherit;;
  background-color: black;
  color: white;
  font-family: inherit;
  border-style: solid;
}

.menu-button {
  font-family: "Calibri";
  font-size: 0.5em;
  word-wrap: break-word;
}

.menu-button:hover {
  color: gray;
}

a {
  text-decoration: none;
  color: white;
}

a:visited {
  color: white;
}

a:hover {
  color: gray;
}

.misc-flow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-style: none;
  padding: 0px 0.5vw 0.5vw 0.5vw;
  gap: 1vw;
  margin-bottom: 0.5vh;
  justify-content: space-evenly;
}

.photo-index-misc-flow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-style: none;
  padding: 0px 0.5vw 0.5vw 0.5vw;
  gap: 1vw;
  margin-bottom: 0.5vh;
}

.category {
  height: auto;
  width: 15em;
  position: relative;
  text-align: center;
}

.category-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: thin;
  background-color: white;
  color: black;
  padding: 0.5vw;
  font-size: 1em;
}

.category-image {
  max-width: 100%;
  max-height: auto;
  background-color: #808080;
  opacity: 1;
  border-style: solid;
  border-width: thin;
  border-color: #DDDDDD;
}

.subpage-image-boxes {
  border-radius: 10px;
  height: auto;
  width: 15em;
  background-color: none;
}

.blog {
  width: 70vw;
  height: auto;
  padding-bottom: 2vw;
  border-bottom-style: dotted;
}

.blog-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-style: solid;
  border-width: thin;
  padding: 1vw;
  gap: 1vw;
  margin-bottom: 3vh;
}

.blog-image-boxes {
  margin-bottom: 1vh;
  margin-left: 1vh;
  height: auto;
  width: 15em;
  background-color: none;
}

.blog-image {
  max-width: 15em;
  max-height: auto;
}

.blog-image-title {
  font-size: 1em;
  color: inherit;
  align-self: center;
  text-align: center;
}
