* {
  margin:  0;
  padding: 0;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

article, aside, footer, header, hgroup, nav, section {
  display: block;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family:  'Menlo', sans-serif;
  font-size:    medium;
  font-weight:  500;
  font-style:   normal;
  font-kerning: normal;
  /*background-color: #121d23;*/
  background-color: #000;
  background-image: url("/static/background.png");
  background-size: 100% auto;
  background-position: bottom;
  background-repeat: no-repeat;
  color: #eee;
}

main {
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

img.logo {
  max-height: 40%;
}

h1 {
  letter-spacing: 0.5rem;
  font-szie: 1.5rem;
}

h2 {
  font-size: 1.2rem;
}

h1 > span {
  font-variant-caps: small-caps; 
}
