body {
  color: #bfbaac;
  background: #0f0e0d;
  
  margin: 0 auto;
  max-width: 50em;
  
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 2.5vw;
}

a {
  color: #db5353;
}

h1 {
  display: flex; /* opt into the new box model */
  justify-content: center; /* "align" */
  align-items: center; /* "valign" */
}

p {
  display: flex; /* opt into the new box model */
  justify-content: center; 
  align-items: center; /* "valign" */
}

.center {
  display: block; /* opt into the new box model */
  justify-content: auto;
  align-items: auto;
  width: 100%;
}

hr {
  margin: 40px 0;
  border: 0;
  border-top: 1px solid
}
