:root {
  --text-color: #000;
  --background-color: #f7f7f7;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text-color: #fff;
    --background-color: #222;
  }
}

* {
  margin: 0;
}

html {
  width: 100vw;
  height: 100vh;
  display: flex;
}

body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: var(--text-color);
  background: var(--background-color);

  font-family: Baskerville;
  font-size: 18pt;
}

body:before { 
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url('wario.png');
  background-repeat: no-repeat;
  background-position: bottom;
  opacity: 0.2;
  z-index: -1;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  padding: 0.5rem;
  font-weight: normal;
  text-align: center;
}

h1 {
  font-weight: bold;
  text-transform: uppercase;
}

h3 {
  text-transform: lowercase;
  font-style: italic;
}
