body {
    margin: 0;
    padding: 0;
    height: 100vh;
    /* On appelle ton image enregistrée */
    background-image: url('grue.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.container {
    background-color: rgba(0, 0, 0, 0.6); /* Fond sombre pour la lisibilité */
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 80%;
}

h1 {
    margin: 0;
    font-size: 2rem;
}