body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9fafb;
    color: #333333;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

h1 {
    color: #4f46e5;
    margin-bottom: 30px;
    text-align: center;
}

ol {
    list-style: none;
    padding: 0;
}

li {
    margin: 15px 0;
}

a {
    display: block;
    padding: 12px 24px;
    background-color: #6366f1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

a:hover {
    background-color: #4f46e5;
    transform: scale(1.05);
}
