:root {
  --stitch-border: url("../assets/style/stitches.png");
  --background-image: url("../assets/style/background.png") ;
}

header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
header #headerContent {
  flex-grow: 1;
}
header::after, header::before {
  content: " ";
  display: block;
  flex-grow: 3;
  max-width: 8.4em;
  min-width: 1em;
}

#pageBody #pageContentContainer {
  border-style: solid none;
  border-width: 14px;
  border-image: var(--stitch-border) 14 round;
  flex-grow: 1;
}
#pageBody #lcol, #pageBody #rcol {
  flex-grow: 3;
  position: relative;
  display: block;
  max-width: 9.8em;
  min-width: 1em;
  overflow-x: clip;
}
#pageBody #lcol::after, #pageBody #lcol::before, #pageBody #rcol::after, #pageBody #rcol::before {
  content: " ";
  border: solid 14px;
  border-image: var(--stitch-border) 14 round;
  border-image-outset: 5px;
  background-color: rgb(6.4, 8.4, 10.4);
  display: block;
  position: absolute;
  width: 14em;
  aspect-ratio: 1;
  transform: rotate(45deg);
}
#pageBody #lcol::before {
  top: -7.45em;
  right: 3.25em;
}
#pageBody #lcol::after {
  bottom: -7.45em;
  right: 3.25em;
}
#pageBody #rcol::before {
  top: -7.45em;
  left: 3.25em;
}
#pageBody #rcol::after {
  bottom: -7.45em;
  left: 3.25em;
}

header menu {
  padding: 0;
}
header menu input[type=checkbox] {
  display: none;
}
header menu ul {
  padding: 0;
  list-style: none;
}
header menu ul li {
  display: inline-block;
  padding: 0.5em;
}
header menu ul li a {
  display: inline-block;
  padding: 0em 0.3em;
  border: solid 7px;
  border-image: var(--stitch-border) 14 round;
  border-image-outset: 2px;
  font-family: "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  background-color: rgb(6.4, 8.4, 10.4);
  text-decoration: line-through;
}
header menu ul li a:hover {
  background-color: rgb(37.5428571429, 54.5142857143, 70.4571428571);
}
header menu ul li a:active {
  background-color: rgb(2.0857142857, 3.0285714286, 3.9142857143);
}

body {
  font-size: large;
  font-family: Georgia, serif;
  background-color: #10151a;
  color: white;
  margin: 8px 0;
}

a {
  color: rgb(255, 206.9230769231, 80);
}
a:hover {
  color: rgb(255, 234.9450549451, 182);
}
a:focus {
  color: rgb(255, 234.9450549451, 182);
}
a:visited:not(:hover) {
  color: rgb(255, 206.9230769231, 80);
}
a:active {
  color: #b68400;
}

.collabsible input[type=checkbox]:checked + * {
  display: none;
}

#headerContent {
  text-align: center;
}
#headerContent h1 {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  margin: 0.5rem 0 0 0;
  border: solid 14px;
  border-image: var(--stitch-border) 14 round;
  border-image-outset: 5px;
  background-color: rgb(6.4, 8.4, 10.4);
  color: rgb(28.2, 134.2838709677, 255);
  font-family: "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
}

#pageBody {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
#pageBody #pageContentContainer {
  flex-grow: 1;
  min-height: 20.3em;
}
#pageBody #pageContent {
  max-width: 40em;
  margin: 0 auto;
}
