/* A good general CSS reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
    background-color: #D8B593;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%238e5c49' fill-opacity='0.4' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: #f8f8f8;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 18pt;

  a {
    color: #55362a;
    display: inline-block;
    filter: drop-shadow(1px 1px #000);
  }
}

header {
  padding: 1rem;
  text-align: center;
  background-color: #55362a;
  border-bottom: 2px solid #f8f8f8;
  display: inline-flex;
  flex-direction: column;
  width: 100vw;

    h1 {
        font-family: "DynaPuff", "Comic Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        padding: 1rem;
        text-align: center;
        font-size: 4rem;
        text-transform: uppercase;
    }

    h2 {
      padding: 1rem;
    }
}

main {
    display: flex;
    flex-direction: column;
    margin: 0 auto 1rem;
    background-color: #f8f8f8;
    padding: 1rem;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    color: #55362a;

    @media screen and (min-width: 768px) {
        max-width: 768px;
        padding: 2rem;
        border-left: 1px solid #55362a;
        border-right: 1px solid #55362a;
        border-bottom: 1px solid #55362a;
    }

    h3 {
      font-family: "DynaPuff", "Comic Sans", sans-serif;
      font-size: 2rem;
      padding: 0 0 1rem;
      text-align: left;
    }

    p, li {
      margin-bottom: 1rem;
      line-height: 1.4em;
    }
}