body {
  margin: 0;
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: large;
  background-color: var(--white);
  color: black;
}

html,
body {
  overflow-y: auto;
  scroll-behavior: smooth;
}

button {
  color: black;
}

.black_stripe {
  position: fixed;
  top: 0;
  left: 30px;
  width: 10px;
  height: 100vh;
  background: var(--black);
  z-index: 100;
}

a {
  font-weight: bold;
  color: darkblue;
}

.background_stripes {
  position: fixed;
  top: 0;
  left: 40px;
  display: grid;
  grid-template-columns: repeat(5, 10px);
  height: 100vh;
  z-index: 1;
}

.background_stripe:nth-child(5) {
  background: var(--orange);
}

.background_stripe:nth-child(4) {
  background: var(--purple);
}

.background_stripe:nth-child(3) {
  background: var(--blue);
}

.background_stripe:nth-child(2) {
  background: var(--green);
}

.background_stripe:nth-child(1) {
  background: var(--grey);
}

h1 {
  padding: 0px;
  margin: 10px
}

#disclaimer {
  bottom: 20px;
  position: fixed;
  left: 100px;
  color: var(--black);
}

#disclaimer a {
  color: var(--black);
}