/* BODY */
body {
    font-family: Arial, sans-serif;
    background-color: #f1f2f6; /* fond clair */
    color: #2d3436;            /* couleur par défaut texte */
    margin: 0;
}
h1 {
    background-color: #6c5ce7; /* violet */
    color: white;
    text-align: center;
    padding: 30px;
    margin: 0;
    font-size: 40px;
    letter-spacing: 2px;
    border-bottom: 5px solid #ff7675; /* ligne corail */
}

/* MENU */
ul {
    list-style: none;
    background-color: #2d3436;
    margin: 0;
    padding: 12px;
    text-align: center;
}

ul li {
    display: inline;
    margin: 10px;
}

ul li a {
    color: #ff7675;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
}

ul li a:hover {
    background-color: #ff7675;
    color: white;
}

/* SECTIONS */
div {
    background-color: white;
    color: #2d3436;  /* couleur texte à l’intérieur des div */
    margin: 20px;
    padding: 15px;
    border-radius: 10px; /* coins arrondis pour style */
}

/* TITRES */
h2 {
    color: #6c5ce7;
    text-align: center;
}

/* PARAGRAPHES */
p {
    color: #2d3436;   /* couleur texte */
    text-align: center;
}

/* IMAGES */
img {
    display: block;
    margin: 20px auto;
    width: 300px;
    border-radius: 10px;  /* coins arrondis */
    width: 1000px;
    height: 700px;
}

/* TABLEAU */
table {
    width: 100%;
    margin-top: 10px;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #2d3436;
    padding: 8px;
    text-align: center;
}

/* BOUTON */
button {
    background-color: #ff7675;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #e84393;
}