/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
  font-family: Unifont;
  src: url("/flippy/unifont.otf");
}
html {
  background: black;
}
body {
  /* text */
  font-family: Unifont, monospace;
  font-size: 16px;
  /* metrics */
  margin: 16px auto;
  padding: 12px;
  max-width: 1000px;
  /* display */
  border: 3px double #4c4c4c;
  background: #000000 url("/flippy/flippy.png");
  background-position: 100% 120%;
  background-size: contain;
  background-repeat: no-repeat;
  color: #ffffff;
}

/* unindent stuff */
section, pre, p, h1, h2, h3, h4, h5, h6, dl, ul, ol, li, dt, dd {
  padding: 0px;
  margin: 0px;
}
a {
  color: #aaff55;
}

/* special text formatting */
em, h1, h2, h3, h4, h5, h6 {
  font-style: inherit;
  color: #ff5555;
}

/* headers */
h1 {
  text-align: center;
}
h1, h2 {
  text-transform: uppercase;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* indented block */
p, .indent {
  margin-left: 32px;
}

/* lists */
ul {
  list-style-type: "- ";
  list-style-position: inside;
}