  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #BDBDBD;
      color: black;
      font-family: Georgia, serif;
      font-size: 16px;
      line-height: 1.8;
    }

    h1 {
        font-size: 48px;
    }

    .page {
      max-width: 800px;
      margin: 0 auto;
      padding: 80px 40px 120px;
    }

    .quote {
      text-align: center;
      margin-bottom: 60px;
    }

    .quote p {
      font-style: italic;
    }

    .quote .attribution {
      margin-top: 8px;
      font-style: normal;
      font-size: 14px;
    }

    .songs {
      margin-bottom: 70px;
    }

    .songs p {
      font-size: 14px;
      margin-bottom: 6px;
    }

    .songs .label {
      font-size: 14px;
      margin-bottom: 14px;
    }

    .songs ul {
      list-style: none;
      padding: 0;
    }

    .songs ul li {
      font-size: 14px;
      margin-bottom: 4px;
    }

    .songs-toggle {
      background: none;
      border: 1px solid black;
      font-family: Georgia, serif;
      font-size: 14px;
      cursor: pointer;
      padding: 6px 14px;
      margin-bottom: 16px;
    }

    .songs-toggle:hover {
      background: black;
      color: white;
    }

    .songs ul {
      display: none;
    }

    .songs ul.visible {
      display: block;
    }

    .poem {
      margin-bottom: 80px;
      white-space: pre-line;
    }

    .divider {
      border: none;
      border-top: 1px solid #000;
      margin: 60px 0;
    }