body {
  background: #FFEBF1 url() fixed;
  width: 704px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  font-family: 'Pixelify sans', lato, calibri, Verdana, Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-shadow: 0px 0px 1px #bbb;
  color: #222;
  letter-spacing: 1px;
  line-height: 13px;
}

.wrap {
  width: 704px;
  margin: 0 auto;
}

.container {
  display: flex;
}

#left {
  width: 189px;
  margin: 0px;
  margin-top: 0px;
  margin-right: 4px;
  padding: 0px;
  border: 0px solid #666;
}

#content {
  width: 515px;
  margin: 0px;
  margin-top: 0px;
  padding: 0px;
  border: 0px solid #666;
}

.box {
  background: #D4D0C8;
  border-left: 2px solid #666;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #928F88;
  border-top: 2px solid #666;
  padding: 4px;
  margin-bottom: 4px;
  overflow: hidden;
}

.sidebox {
  background: #D4D0C8;
  border-left: 2px solid #666;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #928F88;
  border-top: 2px solid #666;
  padding: 4px;
  margin-bottom: 4px;
  text-align: center;
}


#header {
  text-align: center;
  color: #2F498C;
  background: #D4D0C8;
  font-size: 20px;
  letter-spacing: 2px;
  padding-left: 4px;
  border-left: 2px solid #666;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #928F88;
  border-top: 2px solid #666;
  width: 696px;
  height: 90px;
  line-height: 90px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}


#navigation {
  width: 608px;
  background: #DDDAD3;
}

.navi {
  float: left;
  display: block;
  font: 9px arial black, calibri;
  border-left: 2px solid #666;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #928F88;
  border-top: 2px solid #666;
  margin-right: 4px;
  padding: 5px;
  min-width: 80px;
  text-align: center;
  background: #D4D0C8;
  text-transform: uppercase;
}


.title {
  font: 9px arial black, calibri;
  text-transform: uppercase;
  color: #FFF;
  background: #E3F4E2 url(https://64.media.tumblr.com/24edcf69b43d44676493a5b517aa225e/9aa6415c11a612ea-90/s640x960/e6ee5ec70e3166f12308004fc1b3c5b742dc8e0e.pnj);
  letter-spacing: 3px;
  padding-left: 4px;
  border-bottom: 1px solid #fff;
  padding-top: 2px;
}


a:link,
a:visited,
a:active {
  color: #2F498C;
  text-decoration: none;
}

a:hover {
  color: #444;
}

.button {
  width: 95px;
  background: #DDDAD3;
  float: left;
  display: block;
  font: 9px arial black, calibri;
  color: #2F498C;
  border-left: 2px solid #666;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #928F88;
  border-top: 2px solid #666;
  margin-right: 4px;
  padding: 5px;
  min-width: 80px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.button:hover {
  background-color: #DDDAD3;
  color: #444;
  cursor: pointer;
}

::-webkit-scrollbar-thumb {
  background-color: #D5B893;
  border-radius: 5px;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: transparent;
}

.hide {
  display: none;
}

.myDIV:hover+.hide {
  display: block;
  color: black;

}

.spoiler {
  opacity: 0;
}

.spoiler:hover {
  opacity: 1;
}

.containers {
  display: flex;
  justify-content: space-around;
  /* Optional: Distributes space evenly */
}

.paragraph-items {
  flex-grow: 1;
  margin: 2px 10px 2px 10px;
  width: 124px;
}

/* Start https://www.cursors-4u.com */
* {
  cursor: url(https://cur.cursors-4u.net/games/gam-2/gam182.cur), auto !important;
}

/* End https://www.cursors-4u.com */

.gcontainers {
  display: flex;
  overflow: auto;
  white-space: nowrap;
  padding: 10px
}

/* Items */
.gcontainers div {
  box-sizing: border-box;
  width: 125px;
  margin: 5px;
  position: relative;
  z-index: 1;
}

/* Images */
.gcontainers div img {
  transition: transform 0.5s ease;
  max-width: 115px;
  height: 149px;
  ;
  object-fit: cover;
}

/* Images */
.image-gallery div img {
  transition: transform 0.5s ease;
}

/* Captions */
.image-gallery div span {
  position: absolute;
  top: 20px;
  left: 5px;
  text-align: center;
  width: 50px;
  box-sizing: border-box;
  background: transparent;
  color: black;
  padding: 5px 10px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.4s ease, opacity 0.5s ease;
}

/* Images on Hover */
.image-gallery div:hover img {
  transform: scale(1.25);
}

/* Captions on Hover */
.image-gallery div:hover span {
  opacity: 1;
  transform: none;
}