* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  padding: 2rem;
  background-color: rgb(252, 246, 240);
  color: rgb(32, 32, 32);

  font-family: var(--font-header);
  
  font-weight: 500;
  font-style: normal;

  display: flex;
  flex-direction: column;
  align-items: stretch;

  max-width: 50rem;
  margin: 0 auto;
}

h1 {
  text-align: left;
  margin-bottom: 0;
}

hr {
  width: 100%;
}

.info {
  text-align: left;
}

#story {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.25em;
}

.alt-text {
  font-family: var(--font-header);
}

p {
  font-weight: 500;
  line-height: 1.6;
}

footer {
  padding-bottom: 2rem;
}

#draft-header {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgb(109, 109, 109);
  font-weight: bold;
  color: rgb(243, 238, 234);
  padding: 8px;
  text-align: center;
}