body {
  width: 100vw;
  overflow-x: hidden;
}
h1 {
  position: relative;
  left: 50px;
  bottom: 25px;
  width: 80vw;
}
h3 {
  margin-left: 15px;
}
h4 {
  margin-top: 25px;
  margin-bottom: 50px;
}
p, ul {
  color: var(--text-main);
}
.big {
  font-size: 1.35rem;
}
.bigger {
  font-size: 1.5rem;
}
.huge {
  font-size: 2rem;
}
p.subtitle {
  font-size: 1.5rem;
  font-weight: 300;
}
.navigator {
  position: fixed;
  top: 150px;
  left: 0;
  width: 25vw;
  padding: 25px 2vw;
}
.navigator.stick-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
}
.navigator ol {
  color: var(--text-main);
  font-size: 1.5rem;
  line-height: 2;
}
.navigator ol li {
  white-space: nowrap;
}
.navigator ol ol {
  font-size: 1.25rem;
  line-height: 1.25;
}
.navigator a {
  color: var(--text-main);
  opacity: 0.75;
  cursor: pointer;
}
.navigator i {
  /* Animated focus arrows */
  display: inline-block;
  position: relative;
  top: 6px;
  left: 50px;
  color: var(--text-main);
  transition-duration: 0.5s;
  opacity: 0;
}
.navigator i.right {
  left: 60px;
}
.navigator ol ol i {
  top: 5px;
  font-size: 1.25rem;
}
.navigator a:hover {
  opacity: 1;
}
.navigator a.focus {
  opacity: 1;
  font-weight: bold;
}
.navigator a.focus i {
  position: relative;
  left: 10px;
  opacity: 1;
}
.navigator a.focus i.right {
  position: relative;
  left: -2px;
  opacity: 0.3;
}
.navigator ol ol a.focus i.right {
  left: -3px;
}
.outer-section {
  position: relative;
  margin: 25px;
  padding-left: 50px;
  border-left: 5px solid var(--faded-strong);
}
.section {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-bottom: 50px;
  margin: 50px 0;
  border-bottom: 1px solid #ccc;
}
.section.last {
  border-bottom: none;
  padding-bottom: 0;
}
.text-box {
  position: relative;
  margin: 25px;
  padding: 25px;
  background-color: var(--inner-pane);
  border-radius: 10px;
  border: 1px solid var(--inverse);
}
.indented {
  margin-left: 50px;
  margin-right: 50px;
}
img.screenshot {
  display: block;
  height: auto;
  max-width: 500px;
  margin: 15px auto;
  border-radius: 10px;
}
.shadow {
  box-shadow: 10px 10px 20px -5px black;
}
img.screenshot.overlay {
  mix-blend-mode: multiply;
}
img.bin {
  opacity: 0.5;
}
img.medium {
  display: block;
  height: 400px;
  width: auto;
  margin: 15px auto;
}
img.small {
  display: block;
  height: 300px;
  width: auto;
  margin: 15px auto;
}
img.smaller {
  display: block;
  height: 200px;
  width: auto;
  margin: 15px auto;
}
table.data {
  max-width: 90vw;
  color: var(--text-main);
  white-space: nowrap;
}
table.data th {
  padding: 0 15px;
  border-bottom: 1px solid var(--text-main);
}
table.data td {
  padding: 30px 15px;
}
table.data td.description {
  white-space: normal;
}
div.file {
  color: #333;
  background-color: #fff;
  font-family: monospace;
  font-size: 1rem;
  border-radius: 15px;
  padding: 25px;
  margin: 25px;
}
div.file .correct {
  background-color: limegreen;
}
div.file .incorrect {
  background-color: red;
}

/* Media queries */
@media(max-width: 1440px) {
  #main-column {
    zoom: 0.75;
    -moz-transform: scale(0.75);
    -moz-transform-origin: 0 0;
  }
  .navigator {
    top: 80px;
    padding: 25px;
  }
  .navigator ol {
    font-size: 1.35rem;
    line-height: 2;
  }
  .navigator ol ol {
    font-size: 1.15rem;
    line-height: 1.25;
  }
  .navigator ol ol i {
    top: 5px;
    font-size: 1.15rem;
  }
}
@media(max-width: 768px) {  /* Tablets are horrendous! */
  #main-column {
    zoom: 1;
    -moz-transform: scale(1);
    -moz-transform-origin: 0 0;
  }
  h4 {
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .top-element-high {
    margin-top: 40vw;
  }
  .pane {
    padding: 15px 5px;
  }
  #navigator-column {
    flex: 0 0 0;
  }
  #main-column {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 5px;
  }
  .navigator {
    top: 64px;
    padding: 25px;
    width: 100vw;
    height: 200px;
    z-index: 9998;
    background-color: var(--navbar-dark);
  }
  .navigator > ol {
    font-size: 1rem;
    line-height: 2;
    padding-left: 50px;
    column-count: 3;
    column-gap: 10px;
    -moz-column-count: 3;
    -moz-column-gap: 10px;
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
  }
  .navigator ol li {
    break-inside: avoid;
  }
  .navigator ol ol {
    font-size: 0.75rem;
    line-height: 1.25;
    padding-left: 15px;
  }
  .navigator ol i {
    top: 3px;
    font-size: 1rem;
  }
  .navigator ol ol i {
    top: 3px;
    font-size: 0.75rem;
  }
  .outer-section {
    padding-left: 10px;
    margin: 15px 0 15px 5px;
  }
  .section {
    flex-wrap: wrap;
    padding-bottom: 25px;
    margin-bottom: 15px;
  }
  .section .col {
    width: 100%;
    flex: 0 0 100%;
  }
  .text-box {
    margin: 15px;
    padding: 15px;
  }
  table.data {
    font-size: 75%;
    white-space: normal;
  }
  table.data th {
    padding: 0 10px;
  }
  table.data td {
    padding: 15px 10px;
  }
  img.screenshot {
    max-width: 60vw;
    margin: 20px auto;
  }
  img.screenshot {
    max-width: 40vw;
  }
  img.medium {
    height: 40vw;
    margin: 20px auto;
  }
  img.small {
    height: 30vw;
    margin: 20px auto;
  }
  img.smaller {
    height: 25vw;
    margin: 20px auto;
  }
  div.file {
    font-size: 1rem;
    border-radius: 15px;
    padding: 15px 5px;
    margin: 15px auto;
  }
}
@media(max-width: 576px) {
  .top-element-high {
    margin-top: 100px;
  }
  #navigator-column {
    display: none;
  }
  .navigator {
    display: none;
  }
  .outer-section {
    padding-left: 5px;
  }
  .text-box {
    margin: 15px 5px;
    padding: 5px;
  }
  .indented {
    margin-left: 25px;
    margin-right: 25px;
  }
  h3, h4 {
    margin-left: 0;
    text-align: center;
  }
  .big {
    font-size: 1.1rem;
  }
  .bigger {
    font-size: 1.2rem;
  }
  .huge {
    font-size: 1.3rem;
  }
  table.data {
    font-size: 35%;
    white-space: normal;
  }
  table.data th {
    padding: 0 10px;
  }
  table.data td {
    padding: 15px 10px;
  }
  img.screenshot, img.medium {
    width: 90%;
    height: auto;
    max-width: 90%;
    margin: 20px auto;
  }
  img.shadow {
    margin-bottom: 30px;
  }
}
