html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: Cambria, Georgia, serif;
  background: #f4f8fc;
  color: #1A4F6E;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #0f1720;
  }
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media print {
  * {
    height: auto !important;
    overflow: visible !important;
  }
}