/*
body {
    background-image: url("pattern.png");
    background-repeat: repeat;
    background-attachment: scroll;
}
*/

body {
    background-color: snow;
}

b {
    font-weight: normal;
    background-color: yellow;
}

i {
    font-weight: normal;
    font-style: normal;
    background-color: #f08080;
}


h1 {
    font-size: 28px;
    color: #000080;
    background-color: #ffffcc;
    border: 3px ridge #999999;
    padding: 12px 16px 12px 40px;
    text-align:center;
    background-size: 100% 32px, 100% 100%;
    line-height: 32px;
    box-shadow: 3px 3px 0px #888888;
    letter-spacing: 1px;
}

h2 {
    text-decoration: underline;
}

h2::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("tomboy.png");
    background-size: 32px 32px;
    margin-right: 8px;
    vertical-align: middle;
}

h2 {
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-thickness: 2px;

}

h3::before {
    content: "▸ ";
    color: teal;
    font-weight: normal;
}

p.verse {
    font-family: mono;
    margin-left: 2em;
}

blockquote {
    background-color: #ffffcc;
    font-size: 0.9em;
    padding: 1em;
    border: 2px ridge;
}

/* Table styling (replaces deprecated HTML4 border/cellpadding attributes
   that org-mode skips when exporting to HTML5) */
table {
  border-collapse: collapse;
  border-top: 2px solid;
  border-bottom: 2px solid;
  margin: 1em 0;
}

thead {
  border-bottom: 2px solid;
}

td, th {
    padding: 6px;
}
