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

html, body {
    height: 100%;
}

.background {
    position: fixed; /* L'image reste fixe */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:  url('/pictures/facade-parking.jpg');  /* Remplacez par le chemin de votre image */
    background-size: cover; /* L'image couvre toute la surface */
    background-position: center; /* Centrer l'image */
    background-repeat: no-repeat; /* Pas de répétition de l'image */
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: flex-start; /* Centre verticalement */
    padding-top: 20px;  
}

.text-container {
    background-color: rgba(255, 255, 255, 0.8); /* Fond blanc avec une légère transparence */
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Ombrage léger */
    text-align: center;
}

h1 {
    font-family: Arial, sans-serif;
    font-size: 2rem;
    color: #273727;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); /* Ombrage du texte */
}

h2 {
    font-size: 15px;
    font-family: Arial, sans-serif;
}
a {
            color: #273727; /* Couleur du lien (vert ici) */
            text-decoration: none; /* Retirer le soulignement par défaut */
            
            
            
            
            transition: background-color 0.3s, color 0.3s; /* Effet de transition pour la couleur */
        }
    
