html {
  background-image: url("assets/rice_paper.jpg");
  background-repeat: repeat;
  height: 100%;
  font-family: serif;
}

body {
  margin: 0 auto;
  max-width: 720px;
  min-height: 100%;
  border-left: 2px solid black;
  border-right: 2px solid black;
  padding: 1rem 2rem;
  background: #ffffff88;
}

header {
  border-bottom: 2px dashed black;
  img {
    float: right;
    height: 100%;
  }
}

code {
  font-size: larger;
  padding: 0.1rem 0.3rem;
  background-color: #e8d5b0;
}

footer {
  border-top: 2px dashed black;
}

figure {
  background: white;
  border: 1px solid black;
  padding: 1rem;

  img {
    width: calc(100%);
  }

  figcaption {
    margin-top: 0.5rem;
    text-align: center;
  }
}

ul {
  padding: 0;
  text-align: center;

  li {
    list-style-type: none;
    display: inline;

    &:not(:first-child)::before {
      content: " ~ ";
    }
  }
}
