#noise {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

h1 {
  margin-top: 0;
}

#manifesto p:last-of-type,
#original p:last-of-type {
  margin-bottom: 0;
}

::-webkit-scrollbar {
  display: none;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #0f0f0f;
  color: white;
  font-family: "Cutive Mono", Monaco, monospace;
  font-size: 2vw;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1080px) {
  body {
    font-size: 1vw;
  }
}

#manifesto,
#original {
  width: 84%;
  margin: 0 auto;
  text-align: justify;
  overflow-y: auto;
  max-height: 84%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#original {
  display: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: #666;
}

::-webkit-scrollbar-track {
  background: #333;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #666 #333;
}