body {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #202225;
}

body.standard {
  margin-top: 1em;
  position: absolute;
  text-align: left;
  align-items: left;
  justify-content: left;
}

div {
  margin: auto;
  max-width: 90%;
  padding-bottom: 10vh;
}

h1, h2, h3, h4, a, p, ul {
  color: white;
  font-family: Arial, sans-serif;
  transition: color 0.2s ease-in-out;
}

h1 {
  margin: 0;
}

footer {
  bottom: 0;
  position: fixed;
  font-size: 0.8em;
  max-width: 90%;
}

.bigger {
  font-size: 1.2em;
  font-weight: bold;
}

.border {
  margin: auto;
  padding: 12px;
  width: fit-content;
  text-align: center;
  border-radius: 12px;
  display: inline-block;
  border: 2px solid #7289DA;
}

.border.width-85 {
  width: 85%;
}

img.header {
  margin: 0.8em;
  max-width: 80%;
}

p>a, .muted {
  color: #96989D;
}

a:hover, a>h2:hover, .blurple {
  color: #7289DA;
}

.blink {
  animation: blinker 1s step-start infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
