
body {
  padding: 0;
  margin: 0;
  background-image: radial-gradient(#fffeee, #dddccc, #aaa999);
  background-attachment: fixed;
  font-family: Montserrat, sans-serif;
  display: grid;
  grid-template-columns: auto 1000px auto;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "header-left header header-right"
    "side-left content side-right";

  height: 100vh;
}

main {
  grid-area: content;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 5em;
  padding-bottom: 5em;
  margin-bottom: 1.5em;
  box-shadow: 3px 3px 13px #969696;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: rgba(0.9, 0.9, 0.9, 0.051);
}

.header {
  grid-area: header;
  box-shadow: 3px 0px 13px #969696;
}

@media only screen and (max-width: 800px) {
main {
}
}

nav {
  grid-area: side-left;
  justify-content: end;
  margin-top: 100px;
  margin-left: auto;
  width: 17em;
}

ul.nav {
  list-style-type: none;
  padding: 0;
  padding-top: 2em;
  padding-bottom: 2em;
}

ul.nav li {
  padding-left: 1em;
  padding-right: 1em;
}

ul.nav a:hover {
  text-shadow: 2px 2px 10px #888;
}
ul.nav a.current {
  text-decoration: underline;
}

ul.nav a {
  display: block;
  padding: 1em;
  color: black;
  text-align: center;
  text-decoration: none;
}

a {
  color: black;
}

p {
  margin: 0.5em;
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
}

img {
  box-shadow: 5px 5px 10px #bbbaaa;
}

h3 {
	margin-top: 0.3em;
	margin-bottom: 0.5em;
}
h2 {
	margin-top: 0.3em;
	margin-bottom: 0.5em;
}
h1 {
	margin-top: 0.3em;
	margin-bottom: 0.5em;
}

a:hover .image img {
  transform: scale(1.05);
  box-shadow: 7px 7px 10px #aaa999;
}

.image {
}

.caption {
  text-align: center;
  margin-top: 1.5em;
}

.subcaption {
  font-size: 0.9em;
  text-align: center;
  margin: 0.5em;
}

