@font-face {
  font-family: "HeaderFont";
  src: url("./KEEPT___.TTF") format("truetype");
}
@font-face {
  font-family: "Normal Font";
  src: url("./CaskaydiaCoveNerdFont-Regular.ttf") format("truetype");
}
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #222;
  color: #ccc;
  text-align: center;
  font-family: "Normal Font", monospace, Arial;
}

nav {
  background-color: #5369;
  text-align: left;
}
nav a {
  display: inline-block;
  /* background-color: red */
  padding: 5px 10px;
  margin: 3px 5px;
  color: #ccc;
  opacity: 0.6;
  /* text-underline-offset: 2px */
  text-decoration: underline wavy 2px #5938;
  transition: all 0.25s;
}
nav a:hover, nav a:focus {
  opacity: 1;
}

header {
  letter-spacing: 0.2em;
  background-image: linear-gradient(175deg, #5366 30%, #5937 90%);
  padding: 5px;
  text-shadow: 3px 2px 0 #222;
}
header h1 {
  font-family: "HeaderFont", monospace;
  font-size: 50pt;
}
header h2 {
  font-family: monospace;
  font-size: 18pt;
}
header h4 {
  font-size: 10pt;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: none;
}
header h4 .bracket {
  color: rgba(255, 255, 255, 0.4);
}

section {
  margin: 7px 0;
  background-color: #536a;
  padding: 10px 30px;
  position: relative;
  justify-content: center;
}
section p {
  max-width: 1000px;
  margin: 2rem auto;
}
section h1 {
  padding: 0 5px;
  text-underline-offset: 4px;
  text-decoration: underline wavy 2px #5938;
  font-size: 25pt;
}
section h3 {
  display: block;
  width: fit-content;
  padding: 2px 10px;
  border-bottom: 3px solid #5935;
  font-size: 20pt;
}
section a {
  color: rgba(119, 187, 85, 0.8);
}
section .textbox {
  font-size: 14pt;
  text-align: left;
  padding: 5px 30px;
  max-width: 750px;
  border: 2px dashed #5934;
  margin: 0 auto;
}
section .textbox ul {
  margin-left: 0;
  padding-left: 30px;
}
section .textbox ul li {
  margin: 5px 0;
}
section .textbox ul li::marker {
  color: #5936;
}
section .textbox span.underline {
  text-decoration: underline;
}
section #hidden-box {
  background-color: #2229;
  padding: 5px 15px;
  color: #c45c;
  position: relative;
  transition: all 0.25s;
  cursor: pointer;
  margin-bottom: 20px;
  border: 2px dashed #c455;
}
section #hidden-box:hover, section #hidden-box.active {
  background-color: #222c;
  color: #c45f;
}
section #hidden-box h3 {
  border-bottom: none;
  font-size: 15pt;
  width: 100%;
  position: relative;
  padding-bottom: 10px;
}
section #hidden-box h3::after {
  content: "+";
  float: right;
  font-size: 18pt;
  margin-right: 20px;
  position: absolute;
  display: block;
  right: 0px;
  top: 50%;
  transform: translate(0, -50%);
}
section #hidden-box > div {
  border-top: 0 solid #c455;
  height: 0;
  overflow: hidden;
}
section #hidden-box > div ul li::marker {
  color: #c45c;
}
section #hidden-box.active > div {
  border-top-width: 2px;
  height: fit-content;
}
section #hidden-box.active h3::after {
  content: "-";
}

#gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: left;
  /* margin: -10px auto */
  margin-top: -10px;
  margin-bottom: 20px;
}
#gallery img {
  width: 100%;
  max-width: 500px;
  break-inside: avoid;
  margin: 20px 10px;
}

#comment-section {
  max-height: 750px;
  overflow-y: auto;
}
#comment-section > div {
  max-width: 500px;
  margin: auto;
  text-align: center;
}
#comment-section > div h3 {
  margin: auto;
  margin-top: 20px;
  margin-bottom: -10px;
}

/*# sourceMappingURL=style.css.map */
