body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.BigHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: white;
    padding: 1rem;
    height: 90vh;
}

.SmallHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: white;
    padding: 1rem;
    height: 5vh;
}

.BigImg {
    width: 75vh;  /* Ajuste la taille de ton logo */
    height: auto;
    margin-right: 15px;  /* Espace entre le logo et le titre */
}

.SmallImg {
    width: 20vh;  /* Ajuste la taille de ton logo */
    height: auto;
    margin-right: 15px;  /* Espace entre le logo et le titre */
}

header h1 {
    margin: 0;
}

nav {
    background-color: #f7a17d;
    padding: 0.5rem;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;  /* Pour que les liens prennent la largeur du texte et du padding */
    padding: 10px 20px;  /* Ajout d'espace autour du texte */
    text-align: center;  /* Aligner le texte au centre */
    transition: background-color 0.3s ease, transform 0.2s ease;  /* Transition pour l'effet hover */
    border-radius: 5px;  /* Bords arrondis */
}

nav a:hover {
    background-color: #b9836b;  /* Change la couleur de fond au survol */
    transform: scale(1.05);  /* Agrandissement léger au survol */
}

nav a:active {
    background-color: #222;  /* Couleur plus sombre lors du clic */
    transform: scale(1);  /* Rétablit la taille normale après le clic */
}




.container {
    display: flex;
    justify-content: center;
    background-color: #231f20;
}

.content {
    margin-top: 20px;
    width: 70%;
}

.nav {
    margin-top: 20px;
    width: 30%;
}

.article {
    display: flex;
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

.article div {
    flex: 1;
}

.IndexImg {
    width: 100%; /* L'image prend toute la largeur de son conteneur parent */
    height: auto; 
    max-width: 200px; 
    border-radius: 15px; /* Ajoute des bords arrondis */
}

.ArticleImg {
    width: 100%; /* L'image prend toute la largeur de son conteneur parent */
    height: auto; 
    max-width: 500px; /* Largeur maximale de 500px */
    display: block; /* Fait de l'image un bloc, ce qui permet de la centrer */
    margin: 0 auto; /* Centre l'image horizontalement */
}


.article a {
    color: white;  /* Texte en blanc */
    background-color: #f7a17d;  /* Fond sombre pour le bouton */
    padding: 10px 20px;  /* Espacement intérieur du bouton */
    border-radius: 5px;  /* Bords arrondis */
    text-decoration: none;  /* Enlève la sous-ligne */
    display: inline-block;  /* Permet au lien de se comporter comme un bloc */
    font-size: 1.1rem;  /* Taille du texte */
    text-align: center;  /* Aligne le texte au centre */
    transition: background-color 0.3s ease, transform 0.2s ease;  /* Transition pour l'effet hover */
}

.article a:hover {
    background-color: #f3ad8f ;  /* Change la couleur de fond au survol */
    transform: scale(1.05);  /* Agrandissement léger au survol */
}

.article a:active {
    background-color: #222;  /* Couleur plus sombre lors du clic */
    transform: scale(1);  /* Rétablit la taille normale après le clic */
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
}

/* Style général du formulaire */
form {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Style des champs de saisie */
form input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

form input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
}

/* Style du bouton */
form input[type="submit"] {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form input[type="submit"]:hover {
    background: #0056b3;
}

.logo{
    
}