/* Structure générale */
body{
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f5f5;
    color: #333; 
	
	
}
body h2, h3, h4{
	color: brown;
}


h2 { color:red; }


	

	
h1, h2, h3, h4, h5 {
    margin-top: 1rem
	
}

p {
	.
    text-align: justify;
}

/* Menu */



.menu {
    display: flex;
    gap: 10px;
    padding: 10px;
background: #ccc;  
	
}

.menu a {
    padding: 8px 12px;
    background: white;
    border: 2px solid red;
    border-radius: 4px;
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

/* Mise en page principale */
.container {
    display: flex;
    gap: 20px;
    padding: 20px;

 
}


.imagine, .institutions {
    background: #D3D3D3;
    padding: 15px;
    border-radius: 6px;
    flex: 1;
}

.imagine {
    max-width: 35%;
}

.institutions {
    flex: 2;
}

/* Ombre */
.ombre {
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Images modif  */
.img {

    width: 80%;
    height: auto; 
    margin-bottom: 15px;
}    

.video {
    width: 80%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 6px; /* optionnel pour harmoniser avec les images */
}







/* Couleurs */
.bleu { color: blue; }
.noir { color: black; }

/* Responsive */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .imagine {
        max-width: 100%;
    }
}
