html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000;
  color: #ff579d;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Comic Sans MS", sans-serif;
  -webkit-user-drag: none;
}

#main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0;
  overflow-y: hidden;
  overflow-x: hidden;
}

#col-mid {
  box-sizing: border-box;
  display: block;
  min-width: 400px;
  min-height: 100vh;
  padding: 20px 40px;
  margin: 0 auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-user-drag: none;
}

.col-side {
  width: 35%;
  padding: 0 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 2.2em;
}

h2 {
  font-size: 1.6em;
  margin: 0.4em 0;
}

h3 {
  font-size: 1.4em;
  margin: 0.4em 0;
}

span {
  font-size: 1em;
}

p {
  font-size: 1em;
  margin: 0.5em 0;
}

.cmd {
  font-weight: bold;
  background-color: rgb(19, 19, 19);
  padding: 0.5rem;
  overflow-x: auto;
}

.cmddesc {
  padding-left: 1em;
  padding-bottom: 1em;
}

.clickme {
  font-size: 1em;
  color: rgb(115, 84, 255);
  margin-bottom: 8pt;
}

#overlay-checkbox {
  display: none;
}

#overlay-click {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  background-image: url("image/agecheck.png");
  background-size: 100vw 100vh;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9999;
  cursor: pointer;
}

@media (max-width: 768px) {
  #overlay-click {
    background-size: 100vw 50vh;
  }
}

#overlay-checkbox:checked + #overlay-click {
  display: none;
}

#toc {
  position: fixed;
  top: 40px;
  left: 40px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
}

@media (max-width: 768px) {
  #toc {
    display: none;
  }
}

#toc h3 {
  margin-top: 0;
  font-size: 1.2em;
}
#toc ul {
  list-style-type: none;
  padding: 0;
}
#toc li {
  margin-bottom: 5px;
}
#toc a {
  color: #ff579d;
  text-decoration: none;
  font-size: 0.9em;
}
#toc a:hover {
  text-decoration: underline;
}

.cutespacer1 {
  height: 1rem;
}
.cutespacer2 {
  height: 2rem;
}
.cutespacer4 {
  height: 4rem;
}
.cutespacer6 {
  height: 6rem;
}
.cutespacer10 {
  height: 10rem;
}
.cutespacer20 {
  height: 20rem;
}
.cutespacer40 {
  height: 40rem;
}
.cutespacer60 {
  height: 60rem;
}
.cutespacer80 {
  height: 80rem;
}
.cutespacer100 {
  height: 100rem;
}
.cutespacer120 {
  height: 120rem;
}


.cuteimage100 {
  width: 100%;
  z-index: 1;
}
.cuteimage90 {
  width: 90%;
  z-index: 1;
}
.cuteimage80 {
  width: 80%;
  z-index: 1;
}

.cutevideo100 {
  width: 100%;
  z-index: 2;
}
.cutevideo90 {
  width: 90%;
  z-index: 2;
}
.cutevideo80 {
  width: 80%;
  z-index: 2;
}

.cuteimage {
  width: 100%;
  border-style: solid;
  border-color: #ff579d;
  border-width: 10px 15px 25px 8px;
  box-shadow: 5px 2px 10px rgba(0,0,0,1.0);
}

.vid {
  width: 100%; 
  border-style: solid;
  border-color: #ff579d;
  border-width: 10px 15px 25px 8px;
  box-shadow: 5px 2px 10px rgba(0,0,0,1.0);
}

.vid:fullscreen {
  border: none;
}

.meme {
  width: 100%;
}

.rot2 {
  transform: rotate(2deg)
}

.rot3 {
  transform: rotate(3deg)
}

.rot4 {
  transform: rotate(4deg)
}

.rot5 {
  transform: rotate(5deg)
}

.rot-2 {
  transform: rotate(-2deg)
}

.rot-3 {
  transform: rotate(-3deg)
}

.rot-4 {
  transform: rotate(-4deg)
}

.rot-5 {
  transform: rotate(-5deg)
}

.offx1 {
  padding-left: 1rem;
}
.offx2 {
  padding-left: 2rem;
}
.offx3 {
  padding-left: 3rem;
}

.offx-1 {
  padding-right: 1rem;
}
.offx-2 {
  padding-right: 2rem;
}
.offx-3 {
  padding-right: 3rem;
}

.offy1 {
  transform: translateY(1rem);
}
.offy2 {
  transform: translateY(2rem);
}
.offy3 {
  transform: translateY(3rem);
}

.offy-1 {
  transform: translateY(-1rem);
}
.offy-2 {
  transform: translateY(-2rem);
}
.offy-3 {
  transform: translateY(-3rem);
}

pre {
  background-color: rgb(19, 19, 19);
  padding: 1rem;
  overflow-x: auto;
}