/* Styles généraux */
body {
    background: linear-gradient(to right, #2196F3, #87CEEB); /* Dégradé moderne */
    font-family: 'Ubuntu', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Titres */
.titre {
    font-size: 35px;
    font-weight: 700;
    text-align: center;
}

.sous-titre {
    font-size: 22px;
    font-weight: 500;
    margin-top: 15px;
}

/* Texte */
.p1 {
    font-size: 18px;
    line-height: 1.5;
}

/* Menu */
.menu-nav {
    display: flex;
    flex-direction: column; /* Organise les éléments en colonne */
    align-items: flex-start; /* Aligne à gauche */
    padding-left: 20px;
}

.menu-nav ul {
    list-style: none; /* Supprime les puces */
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Permet aux boutons de passer à la ligne */
    gap: 8px; /* Espacement entre les boutons */
}

/* Boutons */
.bouton {
    color: white;
    background: #007BFF;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    display: block;
    text-align: center;
    padding: 8px 12px;
    width: fit-content; /* Ajuste la largeur en fonction du texte */
    min-width: 100px;
    max-width: 150px;
    margin: 4px 0; /* Espacement vertical */
    text-decoration: none;
}

.bouton:hover {
    background: #B22222; /* Rouge brique */
    color: white; /* Garde le texte lisible */
    transform: scale(1.05); /* Ajoute un léger effet d'agrandissement */
}


/* Logo */
.logo {
    width: 200px; /* Réduit la taille du logo */
    height: auto;
    display: block;
    margin: 20px auto; /* Centre le logo */
}

