* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 5vw;
  line-height: 6vw;
  font-weight: 300;
  font-family: 'IBM Plex Mono', monospace;
  background: #d5e6ee;
  color: #eef5f8;
  width: 100%;
  animation: pulse 5s infinite;
}

.language-switcher {
  font-size: 2vw;
  font-weight: 500;
  padding-right: 3vw;
  text-align: right;
}

.text {
  padding: 0 3vw;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.text p {
  margin-bottom: 5.5vw;
  opacity: 0;
  animation: fadein .2s forwards ease-out;
}

a {
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  color: inherit;
  padding-left: .5vw;
  padding-right: .5vw;
  margin-left: -.5vw;
  margin-right: -.5vw;
  cursor: pointer;
  transition: color .3s ease, text-shadow .3s ease;
}

a:hover {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  text-shadow: 0 0 .5em #fff;
}

a:focus {
  color: #fff;
  outline: none;
}

.footnote {
  font-size: 2.2vw;
  line-height: 2.2vw;
  padding-top: 5vw !important;
}

.noscroll {
  overflow: hidden;
}

::selection {
  color: #aab8be;
}

::-moz-selection {
  color: #aab8be;
}

@keyframes fadein {
  0% {
    opacity: 0;
    margin-top: 1.5vw;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

@keyframes pulse {
  0% {
    background-color: #d5e6ee;
  }
  25% {
    background-color: #d5d9ed;
  }
  50% {
    background-color: #d5e6ee;
  }
  75% {
    background-color: #d5ede9;
  }
  100% {
    background-color: #d5e6ee;
  }
}

@media (max-width: 500px) {
  .footnote {
    font-size: 5.5vw;
    line-height: 5.5vw;
  }
}