* {
  box-sizing: border-box;
  cursor: url('cursor.png'), auto;
}
body {
  background-color: dimgray;
  background-image: url('bg_purple.png');
}
hr {
  border-top: 2px dashed;
}
@font-face {
  font-family: Pumpkin;
  src: url('fonts/pumpkin-revisited.otf');
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: white;
  border: 2px solid black;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: dimgray;
  border: 2px solid black;
  border-radius: 5px;
}
/*Container*/
#container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr 4fr;
  grid-template-areas:
    'banner banner banner'
    'L M R';
  width: 750px;
  height: 750px;
  border-image: url("border02.png") 18 fill / 18px / 0 round;
  padding: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 75px;
  margin-bottom: 75px;
}
.sideBar {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  image-rendering: pixelated;
}
.M {
  grid-area: M;
  background-image: url("bg_M.png");
  width: 99%;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y proximity;
}
/*Lace*/
.laceTop {
  background-image: url('lace_top.png');
  background-repeat: repeat-x;
  background-size: contain;
  position: fixed;
  height: 50px;
  width: 100%;
  top: 0;
  left: 0;
}
.laceBottom {
  background-image: url('lace_bottom.png');
  background-repeat: repeat-x;
  background-size: contain;
  position: fixed;
  height: 50px;
  width: 100%;
  bottom: 0;
  left: 0;
}
.laceMini {
  background-image: url('lace_mini.png');
  background-repeat: repeat-x;
  background-size: contain;
  position: absolute;
  height: 50px;
  width: 700px;
  z-index: 1;
}
/*Boxes*/
.baseContent {
  display: flex;
  margin: auto;
  align-content: space-evenly;
  align-items: space-evenly;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.boxStyle {
  display: inline-block;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}
.center {
  width: 315px;
  padding-bottom: 0.5px;
  margin-top: 12.5px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12.5px;
}
.title {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*Border Lace Colors*/
.black {
  border-image: url('border_black.png') 7 fill / 7px / 7px round;
  color: white;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  text-align: center;
  text-shadow: 0 1px HotPink, 0 -1px HotPink, 1px 0 HotPink, -1px 0 HotPink;
}
.pink {
  border-image: url('border_pink.png') 7 fill / 7px / 7px round;
  color: black;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  text-align: center;
  text-shadow: 0 1px white, 0 -1px white, 1px 0 white, -1px 0 white;
}
.purple {
  border-image: url('border_purple.png') 7 fill / 7px / 7px round;
  color: white;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  text-align: center;
  text-shadow: 0 1px black, 0 -1px black, 1px 0 black, -1px 0 black;
}
.white {
  border-image: url('border_white.png') 7 fill / 7px / 7px round;
  color: black;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  text-align: center;
  text-shadow: 0 1px HotPink, 0 -1px HotPink, 1px 0 HotPink, -1px 0 HotPink;
}