body,
h1,
p,
ul,
li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f0f0;
    /* Fond gris clair pour un look moderne */
    padding: 20px;
}

h1 {
    color: #ff5733;
    /* Orange vif pour évoquer la créativité */
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

p {
    margin-bottom: 20px;
    font-size: 1.1em;
    text-align: center;
    color: #555;
}

ul {
    list-style-type: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

li {
    background: #e0e0e0;
    /* Gris pour les éléments de la liste */
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

input[type="checkbox"] {
    margin-right: 15px;
}

a {
    color: #ff5733;
    /* Orange pour les liens */
    text-decoration: none;
    display: block;
    flex-grow: 1;
}

a:hover {
    text-decoration: underline;
}
