/* 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: #384C54;
}



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

header {
    min-height: 100%;
    width: 100%;
    display: flex;
    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: #384C54;
}