body {
  margin: 0;
  background-color: white;
  font-family: "Segoe UI", "Liberation Sans", "Arial", sans-serif;
  font-size: 90%;
  line-height: 1.225;
}

.background {
  background: #0859b9;
  background: linear-gradient(
    135deg,
    rgba(8, 89, 185, 1) 0%,
    rgba(8, 89, 185, 1) 33%,
    rgba(64, 198, 234, 1) 100%
  );
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  user-select: none;
  filter: blur(0px);
}

.page {
  margin: 8px;
  /* Use multi-column layout so section boxes flow like masonry and avoid
     vertical gaps between columns. Each column will try to be at least 600px.
     Horizontal spacing is controlled by column-gap. */
  column-width: 400px;
  column-gap: 8px;
  /*background-image: url(./capitol.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;*/
}

@media (max-width: 620px) {
  .page {
    /* Collapse to a single column on small screens */
    column-width: 100%;
    column-gap: 8px;
  }
}

*::selection {
  background-color: rgba(127, 127, 127, 0.25);
}

.hideLink {
  display: inline;
  color: inherit;
  text-decoration: inherit;
  transition: color 0.2s;
}

.hideLink:hover {
  color: #fab387;
  cursor: pointer;
}

.sectionBox {
  /* Make boxes behave as column children so they stack without creating
     vertical gaps between columns (masonry-like). */
  display: inline-block;
  vertical-align: top;
  width: 100%;
  box-sizing: border-box;
  /* vertical spacing between stacked boxes in columns */
  margin: 0 0 8px 0;
  background-color: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.8);
  /* Prevent boxes from breaking across columns */
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

/* Avoid adding extra bottom margin after the last box if you want the
   container to sit flush with its parent; adjust as desired. */
.page > .sectionBox:last-child {
  margin-bottom: 0;
}

.sectionHeading {
  margin: 0;
}

.backButton {
  display: inline-block;
  color: blue;
  border: 1px solid blue;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: calc(100% - 5vw);
  background: transparent;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.backButton:hover {
  background-color: blue;
  color: white;
  cursor: pointer;
}

h1 {
  font-size: 18vw;
}

h2 {
  font-weight: lighter;
  font-style: italic;
}

.container {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95%;
}

.containerCenter {
  font-family: "Noto Sans Mono", monospace;
  text-align: center;
  width: 100%;
}

ol,
ul {
  margin: 0;
  padding-left: 12px;
}

.window.maximized {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  margin: 0;
  z-index: 9999;
}

.window.maximized .window-body {
  height: calc(92vh - 4px);
  overflow: auto;
}

* {
  scrollbar-width: none !important;
}
