body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f4f8;
    color: #333;
    cursor: url('cursor.png'), auto;
    transition: background 0.3s ease;
}

.container {
    text-align: center;
    margin-top: 100px;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    color: #555;
}

button {
    padding: 12px 24px;
    background: #5cdb95;
    border: none;
    color: white;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #379683;
}

ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

li {
    margin: 10px 0;
}

a {
    text-decoration: none;
    color: #05386b;
    font-size: 1.1em;
}

a:hover {
    text-decoration: underline;
}
