:root {
    --darkGreen: #304137;
    --green: #626647;
    --redSand: #DFBC7B;
    --sand: #D9D0AE;
    --lightBlue: #A7C1C9;
    --gray: #c9d1d9;
}

html {
    font-family: BlackChancery;
    color: var(--darkGreen);
}

.login-button {
    font-family: BlackChancery;
    font-size: 24px;
    width: 100px;
    margin: 20px;
    background: var(--darkGreen);
    border-radius: 3px;
    border: none;
    color: white;
    align-self: end;
}

.login-button:hover {
    background: var(--green);
    cursor: pointer;
}

footer {
    height: 80px;
    width: 100%;
    margin: 80px 0 0 0;
    background-color: var(--redSand);
    height: auto;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-right::before {
    content: url('/svg/mail.svg');
    display: inline-block;
    width: 30px;
    height: 30px;
}

nav {
    height: 80px;
}

h1 {
    font-size: 48px;
}

nav a, div a, footer div {
    font-size: 20px;
    color: var(--darkGreen);
    text-decoration: none;
    text-align: center;
}

body {
    padding: 0;
    margin: 0;
}

body::after, body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;          /* ← devient fixe dans la fenêtre */
    top: 0; left: 0;
    width: 100%;
    height: 100vh;            /* plein écran */
    background-image: url('/images/versaliasBackground2.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -2;              /* reste sous tout le contenu */
    opacity: 0.10;            /* même transparence qu'avant */
    pointer-events: none;     /* ignore les clics */
}

body::before {
    background: var(--sand);
}

.content {
    margin: 180px 0 0 0;
}

p {
    font-size: 36px;
}

@media (max-width: 700px){
    h1 {
        font-size: 32px;
    }

    p {
        font-size: 20px;
    }
}