@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Open+Sans&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom right, #fff0f5, #ffe4e1);
    color: #4b2e2e;
}

h1 {
    text-align: center;
    font-family: 'Great Vibes', cursive;
    font-size: 3em;
    color: #c78fa2;
    margin-top: 40px;
}

p {
    text-align: center;
    font-size: 1.2em;
}

ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 40px auto;
}

li {
    background: #fff;
    margin: 15px 0;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s;
}

li:hover {
    transform: scale(1.02);
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #d18f99;
}

a {
    text-decoration: none;
    color: #a14d5a;
    font-weight: bold;
    font-size: 1.1em;
}

a:hover {
    color: #d86c80;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    color: #a78b91;
    border-top: 1px solid #e3cfd4;
    margin-top: 50px;
    font-size: 0.9em;
}
