body {
    font-family: 'Rubik Doodle Shadow', cursive;
    background: linear-gradient(135deg, #d8b4fe, #a78bfa);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

h3 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-top: 20px;
}

input {
    padding: 10px;
    border-radius: 8px;
    border: none;
    margin-top: 15px;
    font-size: 16px;
    width: 70%;
    max-width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

button {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

button:hover {
    opacity: 0.9;
}

button:nth-of-type(1) {
    background: purple;
    color: white;
}

.delete {
    background: crimson;
    color: white;
    margin-left: 10px;
}

ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    width: 90%;
    max-width: 300px;
}

li {
    background: white;
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 500px) {
    input {
        width: 80%;
    }
    ul {
        max-width: 90%;
    }
}