<ul>
  <li>
    The Long Way to a Small, Angry Planet
  </li>
  <li>
    Winter's Orbit
  </li>
  <li>
    Master of Formalities
  </li>
  <li>
    Screw The Galaxy: Hard Luck Hank
  </li>
</ul>
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  display: grid;
  place-content: center;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  font-family: sans-serif;
  font-size: 1.25rem;
  padding: 16px;
}

li:not(:last-of-type) {
  border-bottom: 4px dotted tomato;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.