body {
    background-color: rgb(249, 239, 207);
    transition: 0.5s;
  }
  .wikiHeader {
    height: 145px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-family: 'Minecraft Regular';
    background: linear-gradient(rgba(255, 240, 185, 0.4), rgba(255, 246, 165, 0.5)), url(/img/bg/chiseled_quartz_block_top.png);
    background-size: 32px;
    image-rendering: pixelated;
    color: rgba(0, 0, 0, 0.8);
    font-size: 16pt;
    padding: 15px;
    gap: 8px;
    border-bottom: 4px solid rgba(0, 0, 0, 0.2);
    margin-top: 3px;
  }
  .wikiHeader img {
    width: 32px;
    filter: drop-shadow(0 0 1px black);
  }
  .settingsButton {
    position: absolute;
    right: 15px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    transform: translateY(3px);
  }
  .settingsButton:hover {
    cursor: pointer;
    transition: 0.05s;
    background-color: rgba(0, 0, 0, 0.1);
    background-position: bottom;
    border-radius: 5px;
  }
  .settingsButton:active {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .settingsButton img {
    position: relative;
    bottom: 3px;
  }
  .settingsModal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: rgba(0, 0, 0, 0.8);
  }
  .settingsContent {
    background-color: #eee;
    padding: 25px;
    padding-left: 14px;
    padding-top: 20px;
    box-shadow: 0 0 10px black;
    position: relative;
    font-family: 'Minecraft Regular';
    border: 2px solid black; 
    outline: 2px solid rgba(255, 255, 255, 0.8);
  }
  .closeButton {
    position: absolute;
    top: 12px;
    right: 10px;
    border: none;
    background: none;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .closeButton:hover {
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: rgba(255, 255, 255, 1);
    outline: 2px solid rgba(255, 255, 255, 0.8);
  }
  .closeButton:active {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .dark-mode {
    background-color: rgb(16, 17, 24);
    transition: 0.5s;
  }
  .settingsContent input:hover {
    cursor: pointer;
  }
  .wikiBody {
    color: rgba(17, 17, 17, 0.9);
    transition: 0.5s;
    line-height: 1.5;
    max-width: 1200px;
    width: 100%;
    margin-left: 1vw;
    margin-right: auto;
    padding-left: 3vw;
    padding-right: 3vw;
    box-sizing: border-box;
    font-family: 'Helvetica Neue' !important;
    padding-bottom: 50px;
  }
  h2 {
    font-family: 'Helvetica Neue';
  }
  h3 {
      font-family: 'Helvetica Neue';
  }
  .whiteText {
    color: rgb(238, 242, 255) !important;
    transition: 0.5s;
  }
  .column-list {
    overflow-y: auto;
    column-width: 250px;
    column-gap: 2rem;
  }
  .column-list ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 0;
  }
  .column-list li {
    break-inside: avoid;
    margin-bottom: 1.5rem;
  }
  .column-list .desc {
    display: block;
    font-size: 0.9em;
    margin-top: 0.3rem;
    color: rgb(80, 80, 80);
    transition: 0.5s;
  }
  .whiteText .desc {
    color: rgb(196, 202, 213);
  }
  a {
    color: rgb(36, 65, 153);
    text-decoration: none;
    transition: 0.1s;
  }
  a:hover {
    color: rgb(87, 116, 204);
    transition: 0.1s;
  }
  .whiteText a {
    color: rgb(159, 183, 255);
  }
  .whiteText a:hover {
    color: rgb(99, 125, 204);
  }
  table, td, th {
      border: 1px solid gray;
       border-collapse: collapse;
       padding: 5px;
  }
  code {
    font-size: 11pt;
  }
  iframe {
    max-width: 100%;
  }