/* Corps de la page */
.bodyh {
    background-image: url("bleu.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0.5rem 0; 
}

/* Liste de navigation */
.navv {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 4rem;
    font-size: 1.2rem;
    padding: 2rem 0;
    font-weight: bold;
    letter-spacing: 3px;
}

.navv a {
    text-decoration: none;
    color: inherit;
}

.navv li {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navv li:hover {
    background-color: darkred;
    color: white;
    filter: blur(5px);
}

/* Contenu principal */
.mainh {
    display: flex;
    justify-content: center;
}

.iliesph {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    gap: 30px;
    max-width: 900px;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.iliesph img {
    width: 250px;
    height: auto;
    border: 3px solid black;
    border-radius: 6px;
}

/* Formulaire */
.formulaire {
    display: flex;
    flex-direction: column; 
    background-color: darkred;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 20px;
    color: white;
}

.champ {
    margin-bottom: 17px;
    display: flex;
    flex-direction: column;
}

.submit {
    margin-top: 10px; 
    color: black;
}

h2 {
    font-weight: bold;
}
