/* Police personnalisée */
@font-face {
    font-family: 'NeogreyRegular';
    src: url('/fonts/neogreyregular-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Styles de base */
body {
    background-color: #B7C6D4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: 'NeogreyRegular', sans-serif;
    overflow-x: hidden;
}

.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    color: #7B9AB3;
    font-size: 4em; /* Taille réduite par défaut */
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

/* Footer centré et empilé */
footer {
    background-color: #B7C6D4;
    padding: 15px 20px;
    width: 100%;
    display: flex;
    flex-direction: column; /* Empile les éléments verticalement */
    justify-content: center;
    align-items: center;
    border-top: 1px solid #7B9AB3;
    margin-top: auto;
    gap: 10px; /* Espace entre les éléments */
}

.contact-link {
    color: #7B9AB3;
    text-decoration: none;
    font-family: 'NeogreyRegular', sans-serif;
    font-size: 1em;
    text-align: center;
}

.copyright {
    color: #7B9AB3;
    font-family: 'NeogreyRegular', sans-serif;
    font-size: 0.9em;
    text-align: center;
}

/* Taille du h1 adaptée */
@media (min-width: 600px) {
    h1 {
        font-size: 6em;
    }
}

@media (min-width: 900px) {
    h1 {
        font-size: 8em;
    }
}
