﻿#header {
  width: 100%;
  text-align: center;
  font-family: sans-serif;
  font-size: 100%;
  text-transform: uppercase;
}

#header a {
  display: inline-block;
  text-decoration: none;
  padding: 10px;
  color: black;
}
#header a:hover {
  background-color: rgb(220,220,220);
}
#header-picture {
  border-bottom-style: solid;
}
#header-menu {
  border-bottom-style: solid;
}
#contents {
  font-family: sans-serif;
  line-height: 1.5;
  display: grid;
  grid-template-areas: "sidebar displayarea";
  grid-template-columns: 200px auto;
}
#contents a {
  color: black;
}
#contents a:hover {
  background-color: rgb(220,220,220);
}
#sidebar {
  grid-area: sidebar;
  padding-right: 5px;
  padding-top: 10px;
}
#displayarea {
  grid-area: displayarea;
  padding-left: 5px;
  padding-top: 10px;
  border-left-style: solid;
  min-height: 100vh;
}
#footer {
  position: fixed;
  font-family: sans-serif;
  width: 100%;
  bottom: 0;
  text-align: center;
  background-color: white;
}

#footer a {
  text-decoration: none;
  color: black;
}

#footer a:hover {
  background-color: rgb(220,220,220);
}
#carousel {
  text-align: center;
}
#carousel img {
  max-height:50vh;
  width:auto;
  border: 2px black solid;
  vertical-align: middle;
}
#blog img {
  max-height:50vh;
  width:auto;
  border: 2px black solid;
}
#blog {
  text-align: left;
  float: left;
  font-family: sans-serif;
  line-height: 1.5;
}
#blog a {
  color: black;
}
#blog a:hover {
  background-color: rgb(220,220,220);
}
figcaption {
font-style: italic;
}


#sidebar button {
  background: transparent;
  border: none;
  padding: 0!important;
  font-family: sans-serif;
  text-decoration: underline;
  cursor: pointer;
  text-align: left;
  font-size: 100%;
}
#sidebar button:hover {
  background-color: rgb(220,220,220);
}
#nails img{
  cursor: pointer;
}
#pivot {
  border-bottom-style: solid;
}
#navigation {
  font-family: sans-serif;
  line-height: 1.5;
  display: grid;
  grid-template-areas: "nextpost previouspost";
  grid-template-columns: auto;
}
#navigation button {
  background: transparent;
  border: none;
  padding: 0!important;
  font-family: sans-serif;
  cursor: pointer;
  text-align: left;
  font-size: 100%;
}
#navigation button:hover {
  background-color: rgb(220,220,220);
}