* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Avenir", Arial, sans-serif;
    background-color: #008EA2;
    color: white;
    min-height: 100vh;
    position: relative;
    text-align: center;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 180px;
}
.message {
    position: static;
    transform: none;
    width: 85%;
    max-width: 900px;
    margin: 40px auto 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* =========================
   VERSION DESKTOP
========================= */

.desktop-version {
    display: none;
    height: 100vh;
    width: 100%;
}

.desktop-version img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* =========================
   VERSION MOBILE
========================= */

.mobile-version {
    display: block;
    position: relative;
    min-height: 100vh;
    text-align: center;
    color: white;
    padding: 40px 20px 120px 20px;
}

.top-logo img {
    width: 45%;
    max-width: 300px;
    height: auto;
    margin-bottom: 40px;
}

.message {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 60px; /* espace sous le texte */
}

.bottom-left {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.bottom-left img {
    width: 140px;
}

.bottom-right {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.bottom-right img {
    width: 220px;
    height: auto;
}

/* =========================
   BREAKPOINT DESKTOP
========================= */

@media (min-width: 992px) {

    .desktop-version {
        display: block;
    }

    .mobile-version {
        display: none;
    }
}