body {
    width: 100vw; /* S'assure que le body prend toute la largeur de la fenêtre */
    background-attachment: fixed !important;
    background-image: linear-gradient(90deg, #ffffff, #3780b0);
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

h1 {
    font-size: 100px;
    text-align: center;
    margin: 0;
    white-space: nowrap; /* Empêche le texte de se couper sur plusieurs lignes */
    display: inline-block; /* Empêche la ligne de se casser */
}

#container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}