body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('imgs/raycars.jpg'); /* Ajout de l'image de fond */
    background-size: cover; /* Ajustement de la taille de l'image pour couvrir tout le contenu */
    background-position: center; /* Positionnement de l'image de fond au centre */
}

.maintenance-container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9); /* Couleur de fond légèrement opaque */
    text-shadow: 2px 2px 2px black; /* Ajout du contour noir aux textes */
    border-radius: 10px; /* Angles arrondis */
}

h1 {
    font-size: 46px;
    color: #e2e2e2;
}

p {
    font-size: 26px;
    color: #e2e2e2;
    margin-bottom: 20px;
}

a {
    font-weight: bold;
    font-size: 26px;
    color: #e2e2e2;
    margin-bottom: 20px;
}

/* Pour les écrans de taille inférieure ou égale à 768px (comme les smartphones) */
@media only screen and (max-width: 932px) {
    body {
        background-size: auto; /* Supprimer l'image de fond pour les smartphones */
        background-color: #f1f1f1; /* Utiliser une couleur de fond par défaut */
    }

    .maintenance-container {
        padding: 20px; /* Ajouter un peu d'espace autour du contenu pour les smartphones */
        text-align: center;
    }

    img {
        width: 200px; /* Largeur du logo */
        height: auto; /* Hauteur automatique pour conserver les proportions */
    }

    p {
        font-size: 20px;
        color: #e2e2e2;
        margin-left: auto;
        margin-right: auto;
    }

    a {
        font-size: 20px;
        color: #e2e2e2;
    }
}