body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #eef1f5;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}

h1 {
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: 300;
}

ul {
    list-style-type: none;
    padding: 0;
    width: 100%;
    max-width: 500px;
}

li {
    background-color: #ffffff;
    margin: 15px 0;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    font-size: 1.1em;
    display: block;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #2980b9;
} 