/* ## LAYOUT ## */
html,
body {
  height: 100%;
}
/* Space all template components (header, main & footer) evenly on the vertical axis. */
.standalone-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  /* Within each component, vertically space and center sub-components evenly */
  /* Provide some minimum vertical spacing between the main content and the header and footer components. */
}
.standalone-container header,
.standalone-container main,
.standalone-container footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}
.standalone-container main {
  margin-top: 32px;
  margin-bottom: 32px;
}
/*
 * Little "trick" for preventing header and footer components to "stick" to top and bottom of viewport on tall viewports:
 * We add a `text` component as the first and last child of the `.standalone-container` element, acting as `zero-height` spacer/buffer
 * elements that cause Flex to add some more (dynamic) padding.
 */
@media (min-height: 768px) {
  .standalone-container::before,
  .standalone-container::after {
    content: ' ';
  }
}
/* ## HEADER ## */
.school-logo {
  max-width: 400px;
  max-height: 250px;
}
@media (max-width: 769px) {
  .school-logo {
    padding: 0 16px;
    max-width: 100%;
    max-height: 200px;
  }
}
.school-organization {
  font-size: 26px;
  font-weight: bold;
}
.school-homepage {
  font-size: 18px;
}
/* ## FOOTER ## */
.logo-iserv {
  display: block;
  margin: 0 auto 15px;
  width: 135px;
  position: relative;
  right: 16px;
}
/* ## COLORS ## */
body {
  background-color: var(--body-bg-color);
  color: var(--text-color);
}

