/* 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." */

body {
  background-color: black;
  color: white;
  font-family: Verdana;
}
p {
  max-width: 600px;
  margin-left: 1rem;
  margin-right: auto;
  line-height: 1.6;
}
barrier {
  display: block;            /* make it act like a block-level divider */
  font-family: monospace;    /* so each “<>” lines up evenly */
  margin-left: 1rem;
  margin-right: auto;
  margin-top: 2rem;
}

barrier::before {
  content: "<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>";  /* as many repeats as you want */
}

body foot {
  margin-left: 1rem;
  margin-right: auto;
  font-size: 80%;
}