/* web.css */
html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    background-color: #f8f9fa;
    /* Optional: to match the navbar */
}

:root {
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Source Sans 3', sans-serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--heading-font);
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-link {
    font-family: var(--body-font);
    font-weight: 500;
}

/* Add some nice typography improvements */
h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

.lead {
    font-family: var(--body-font);
    font-weight: 300;
    font-size: 1.25rem;
}