body,
h1,
p,
ul,
li,
footer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff0f5;
    /* Fond rose pâle pour une ambiance joyeuse */
    padding: 20px;
}

h1 {
    color: #ff69b4;
    /* Rose vif pour le titre */
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

p {
    margin-bottom: 20px;
    font-size: 1.2em;
    text-align: center;
    color: #555;
}

ul {
    list-style-type: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

li {
    background: #ffb6c1;
    /* Rose clair pour les éléments de la liste */
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

input[type="checkbox"] {
    margin-right: 15px;
}

a {
    color: #8a2be2;
    /* Bleu violet pour les liens */
    text-decoration: none;
    display: block;
    flex-grow: 1;
}

a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #555;
    border-top: 1px solid #ff69b4;
    padding-top: 10px;
}
