
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: 100%;
}

/* Apply font only here, NOT layout */
body {
  margin: 0;
  font-family: 'Inter';
}

/* Main layout wrapper */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Let the content grow to fill space */
.page-wrapper > main {
  flex: 1;
}