/* ============================================================================
    Base Layout - reused across all templates
   ============================================================================ */
/* Must be enabled after fixing styles
      *, *::before, *::after {
        box-sizing: border-box;
      } */
html,
body {
  height: 100%;
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: rgba(245, 245, 245, 1);
  font-family: "Amalia", "Open Sans", Arial, sans-serif;
}
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
[hidden] {
  display: none !important;
}
/* Screen reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* ============================================================================ */
