::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #00006d;
}

::-webkit-scrollbar-thumb {
  background-color: #bbb;
}

::-webkit-scrollbar-thumb:hover {
  background: #919191;
}

body {
  margin: 0;
  background-color: #008;
  color: #bbb;
  font-family: 'Consolas', monospace;
  font-size: 12pt;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section {
  height: 65vh;
  overflow-y: auto;
  margin-bottom: 3em;
  padding: 4em 1em 0 1em;
}

@media (min-width: 600px) {
  body {
    font-size: 16px;
  }
}

@media (min-width: 900px) {
  body {
    font-size: 24px;
    font-weight: 400;
  }

  section {
    padding-top: 4em;
  width: 70vw;
  }
}

a {
  text-decoration: underline;
  cursor: pointer;
  color: white;
}

.centered {
  text-align: center;
  margin-bottom: 5em;
}

.inverted {
  background-color: #bbb;
  color: #000084;
}

.shadow {
  background-color: #000;
  color: #000084;
}

.blink {
  animation: blinkingText .8s infinite;
}

@keyframes blinkingText {
  0% {
    opacity: 0;
  }

  49% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

#header {
  color: #000084;
  background: #bbb;
  padding: 1em 0 1em 1em;
  letter-spacing: 1em;
  box-shadow: 15px 20px 0px black;

}
