body {
  background-color: #2b1d30;
  font-variant: small-caps;
  font-weight: bold;
  text-align: center;
}
::selection {
  background: #8f609f;
  color: #101010;
}
.container {
  background: #101010;
  display: block;
  color: #c7afcf;
  width: 80%;
  max-height: 600px;
  margin: auto;
  padding-bottom: 15px;
  font-family: 'Courier Primal';
  border: outset 5px #8f609f;
  overflow-y: scroll;
}
h1 {
  font-size: 32px;
}
.folders, .gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  margin: auto 5%;
  font-family: 'Courier Primal';
}
.folders figure {
  width: 27%;
  height: auto;
  padding: 5px;
  margin: auto 2.5px 25px;
  border: outset 2px #c7afcf;
  background: #8f609f;
}
.folders figure:hover {
  background: #c7afcf;
  box-shadow: 1px 1px 10px #8f609f;
}
.folders img {
  height: 200px;
  width: 250px;
  margin: 1px 1px;
  object-fit: cover;
}
figcaption { 
  font-size: 20px;
}
.gallery img {
  max-width: 300px;
  max-height: 300px;
  margin: 5px 1px;
  border: outset 2px #c7afcf;
}
.folders a {
  color: #101010;
  text-decoration: none;
  font-size: 20px;
}
.menu {
  font-family: 'Courier Primal';
  color: black;
  font-size: 20px;
  position: fixed;
  left: 1%;
  bottom: 2%;
}
.menu a {
  color: #8f609f;
  font-size: 24px;
  text-decoration: none;
}
.menu a:hover {
  color: #c7afcf;
  text-shadow: 1px 1px 10px #8f609f;
}