/* overrides to increase page/section sizes */
:root {
  --section-height: 160vh; /* larger sections */
  --section-gap: 80px;     /* space between sections */
  --page-min-height: 140vh; /* overall page min-height */
}

body {
  min-height: var(--page-min-height) !important;
  padding-bottom: 60px !important;
}

section {
  margin-bottom: var(--section-gap) !important;
  min-height: calc(var(--section-height) - 110px) !important;
}

.container {
  min-height: var(--page-min-height) !important;
}
