﻿body {
    font-family: Arial, sans-serif;
    background-color: #e6e6e6;
    margin: 0;
}

.container {
    display: grid;
    justify-content: center;
    margin-top: 100px;
}

.card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    width: 420px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #1a237e;
    margin-bottom: 15px;
}

ul {
    padding-left: 18px;
}

li {
    margin: 10px 0;
}

a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #1565c0;
}