/* style.css */

/* Réinitialiser certaines propriétés par défaut */
body,
h1,
p,
ul,
li,
footer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 20px;
}

h1 {
    color: #0077b6;
    text-align: center;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    background: #00b4d8;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

a {
    color: white;
    text-decoration: none;
    display: block;
}

a:hover {
    background-color: #0077b6;
    padding: 10px;
    border-radius: 5px;
}

footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #555;
    border-top: 1px solid #0077b6;
    padding-top: 10px;
}
