/* CSS files add styling rules to your content */

body {
  margin: 0;
  padding: 0;
  color: #222;
  background: #fff;
  font-family: "Bree Serif", serif;
}

main {
  padding: 2em;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', cursive;
}

h1 {
  font-style: italic;
  margin: 0 0 10px 0;
  padding: 0;
}
h2 {
  margin: 0;
}

.character-sheet {
  column-width: 360px;
}

.character-sheet {
  max-width: 1475px;
  margin: auto;
}

header {
  background: #eee;
  position: relative;
  padding: 30px 30px;
  margin: 18px auto;
  column-span: all;
}

header:after {
  content: "";
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  border-right: #fff 18px solid;
  border-bottom: #fff 18px solid;
  -moz-border-radius: 0 0 20px 0;
  -webkit-border-radius: 0 0 20px 0;
  border-radius: 0 0 20px 0;
}
 
header:before {
  content: "";
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  border-left: #fff 18px solid;
  border-bottom: #fff 18px solid;
  -moz-border-radius: 0 0 0 20px;
  -webkit-border-radius: 0 0 0 20px;
  border-radius: 0 0 0 20px;
}

header h1:after {
  content: "";
  position: absolute !important;
  z-index: 100;
  bottom: 0;
  left: 0;
  border-right: #fff 18px solid;
  border-top: #fff 18px solid;
  -moz-border-radius: 0 20px 0 0;
  -webkit-border-radius: 0 20px 0 0;
  border-radius: 0 20px 0 0;
}
 
header h1:before {
  content: "";
  position: absolute !important;
  z-index: 1000;
  bottom: 0;
  right: 0;
  border-left: #fff 18px solid;
  border-top: #fff 18px solid;
  -moz-border-radius: 20px 0 0 0;
  -webkit-border-radius: 20px 0 0 0;
  border-radius: 20px 0 0 0;
}


section {
  border: 1px solid #222;
  font-family: "Bree Serif", serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0 auto 16px;
  border-radius: 8px;
  max-width: 800px;
  -webkit-column-break-inside: avoid;
            page-break-inside: avoid;
                 break-inside: avoid;

}

h3 {
  font-size: 16px;
  font-weight: 800;
  border-radius: 8px 8px 0 0;
  background: #eee;
  text-align: center;
  margin: 0 auto;
}

section p {
  margin: 20px 12px;
}

section li {
  margin: 0 8px;
}

.statblock__stat-score {
  display: inline-block;
  margin: 0 20px 0 0;
  min-width: 20px;
  text-align: right;
}

.roll-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
  padding: 5px;
}