:root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  background-color: rgb(236, 236, 236);
  color: black;
  font-size: 16px;
}

body {
  padding: 24px;
  margin: 0px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  align-content: start;
  justify-content: start;
  background-color: rgb(236, 236, 236);
}

hr {
  display: block;
  appearance: none;
  height: 2px;
  background-color: rgb(215, 215, 215);
  border: none;
}

section {
  padding-bottom: 2px;
}

h2 {
  margin-bottom: 0.5em;
  line-height: 1.4em;
}

p {
  text-align: left;
  line-height: 1.4em;
  margin: 0px;
  margin-bottom: 0.8em;
}

ul {
  margin-top: 0px;
  padding-left: 1.2em;
}

li {
  line-height: 1.3em;
  margin: 0.4em 0;
}

a {
  text-decoration: none;
  color: rgb(17, 66, 216);
}

a:visited {
  text-decoration: none;
  color: rgb(17, 66, 216);
}

.page-container {
  width: 100%;
  max-width: 210mm;
  padding: 24px 24px;
  background-color: white;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgb(196, 196, 196);
}

.page-title {
  line-height: 0em;
  padding-bottom: 2px
}

.footer {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  font-size: 12px;
  padding: 0px;
  margin: 0px;
  line-height: 0.8em;
  text-align: left;
  color: grey;
}

@media screen and (max-width: 210mm) {

  body,
  html {
    margin: 0;
    padding: 0;
    background-color: white;
  }

  .page-container {
    width: 100%;
    max-width: 210mm;
    padding: 24px 24px;
    background-color: white;
    box-sizing: border-box;
    border-radius: 0;
    border: none;
  }
}

@media screen and (max-width: 599px) {
  .footer {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    line-height: 1.5em;
  }
}

@media print {
  @page {
    size: A4;
    padding: 0;
    margin: 15mm 10mm;
  }

  :root {
    font-size: 12px;
  }

  body,
  html {
    background-color: white;
    margin: 0;
    padding: 0;
  }

  .page-container {
    width: 100%;
    max-width: auto;
    padding: 0px;
    border: 0px solid transparent;
    border-radius: 0px;
    background-color: transparent;
  }
}