body {
  background: rgb(204,204,204);
  font-family: Helvetica;
}

/* A4 layout for HTML */
section.page {
  background: white;
  display: block;
  margin: 0 auto;
  margin-bottom: 0.5cm;
  box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);
}

section.page[data-size="A4"] {
  width: 21cm;
  height: 29.7cm;
}

section.page[data-size="A4"][data-layout="landscape"] {
  width: 29.7cm;
  height: 21cm;
}

section.page[data-size="A3"] {
  width: 29.7cm;
  height: 42cm;
}

section.page[data-size="A3"][data-layout="landscape"] {
  width: 42cm;
  height: 29.7cm;
}

section.page[data-size="A5"] {
  width: 14.8cm;
  height: 21cm;
}

section.page[data-size="A5"][data-layout="landscape"] {
  width: 21cm;
  height: 14.8cm;
}

/* A4 layout for printing */
@page {
  size: A4;
  margin: 0px;
}

@media print {
  body, section.page {
    margin: 0;
    box-shadow: none;
  }

  section.page[data-size="A4"][data-layout="landscape"] {
    width: 297mm;
    /* for some reason the height has to be 1 mm less then the actual A4 standard
    in order to print properly in one page on Firefox */
    height: 209mm;
  }
}

/* Content positioning */
#column {
  height: 80%;
  float: left;
  column-count: 2;
  column-gap: 0;
  column-fill: auto;
  padding-top: 70px;
}

#heading {
  text-align: center;
  padding-bottom: 50px;
  margin: 0px;
  font-size: 23pt;
}

#content {
  height: 100%;
  padding: 0px 50px;
}

ul {
  list-style: none;
  padding-left: 0px;
}

ul li:before {
  content: '–';
  padding-right: 10px;
}

ul li{
  padding-left: 40px;
  text-indent: -20px;
}

li {
  font-size: 13pt;
  line-height: 16pt;
  margin-top: 15px;
}

.centeredDiv {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.surprisedPerson {
  height: 100px;
  padding-left: 40px;
}

.confusedPerson {
  height: 125px;
}

#seperator {
  width: 2px;
  height: 100%;
  margin: 0 50%;
  background-color: rgb(98, 98, 98);
}

#pageNumberLeft {
  margin-top: -40px;
  margin-left: 30px;
  display: block;
}

.chapterTitle {
  margin: 0px 5px;
  font-size: 10pt;
  font-weight: lighter;
}

#pageNumberRight {
  margin-top: -16px;
  margin-right: 30px;
  float: right;
}
