body {
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 40px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    background: white;
    margin-bottom: 12px;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease;
}

li:hover {
    transform: translateY(-3px);
}

a {
    text-decoration: none;
    font-size: 18px;
    color: #2c3e50;
    display: block;
}

a:hover {
    color: #0077cc;
}
