@font-face {
  font-family: dos; /* set name */
  src: url(fonts/ModernDOS8x14.ttf); /* url of the font */
}
* {
  font-family: dos;
  font-size: 18pt;
}

html,
body {
  padding: 2em;
  margin: 2em;
  background-color: black;
  color: #d65d0e;
}
html section,
body section {
  text-align: center;
  width: 60vw;
  min-width: 60vw;
  display: flex;
  flex-direction: column;
}
html section hr,
body section hr {
  border: none;
  color: #d65d0e;
}
html section hr::before,
body section hr::before {
  content: "-------------------------------------------";
}
html section article,
body section article {
  padding: 1em;
  text-align: justify;
}
html footer,
body footer {
  width: 60vw;
  text-align: right;
}
html footer a,
body footer a {
  text-decoration: none;
  color: #d65d0e;
}
