/* base.css */
/* ========== Typography & Base Layout ========== */
:root {
    --font-lg: 1.75rem;
    --font-md: 1rem;
    --font-sm: 0.85rem;
}

body {
    font-family: system-ui, sans-serif;
    font-size: var(--font-md);
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: var(--font-lg);
}

footer {
    text-align: center;
    padding: 1rem;
    font-size: var(--font-sm);
    background-color: #eee;
    margin-top: auto;
}

.container {
    flex: 1;
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem 1.5rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}