/* main.css
   Use this file for core layout styling and page-specific visual rules.
   Include:
   - Layout styles (e.g., body, container)
   - Element-specific styles (e.g., h1, p)
   - Footer layout
   - Custom animations (e.g., fadeIn, glow, sparkle)
   Avoid:
   - Global font settings (handled in font.css)
   - Component styles (place in /components/*.css)
*/

html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  display: block;
  height: auto;
  min-height: 100px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}
