body {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  overflow-x: hidden;
}

h1 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 46px;  
}

#bomb
{
  position: absolute;
  bottom: 64px;
  height: 32px;
  width: 100%;
  background: url("../misc/bomb.png") repeat-x;
}

#main
{
  position: absolute;
  margin: auto;
  top: -8em;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20em;
  width: 50em;
}

.d-none {
  display: none;
}

@media (prefers-color-scheme: dark) {
  body {
    color: #eee;
    background: #121212;
  }

  body a {
    color: #809fff;
  }

  #bomb {
    filter: invert(100%);
  }
}