:root {
    --color-primary: #dbbfa9;
    /* earthy brown */
    --color-background: #f8f6f1;
    /* light sand */
}


/* Reset default browser margins */

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

/* Make the page fill the viewport */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
}



/* Make sure header and h1 don’t add extra spacing */
header,
h1 {
    margin: 0;
    padding: 0;
}

header {
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

/* Logo styling */
.logo {
    width: 90%;
    max-width: 680px;
    height: auto;
    display: block;
    margin: auto;
}

/* Optional: Better font smoothing if you add text later */
body {
    font-family: system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

footer {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-background);
}

.subheading {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3rem;
    letter-spacing: 0.5rem;
    color: var(--color-primary);
}