/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0056b3, #009de0); /* Blue gradient */
    margin: 0;
    padding: 0;
    color: #ffffff; /* Default text color for the gradient background */
}

/* Container */
.container {
    max-width: 800px;
    margin: 50px auto;
    background: #ffffff; /* White container background */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid #d1e3f3;
    color: #333; /* Default text color inside the container */
}

/* Heading */
h1 {
    text-align: center;
    color: #0056b3; /* Deep blue for heading */
    margin-bottom: 20px;
    font-size: 2em;
}

/* List */
ul {
    list-style: none;
    padding: 0;
}

li {
    background: #eaf4fc; /* Light blue */
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #d1e3f3;
    font-size: 1.2em;
}

li:hover {
    background: #d0e7f8; /* Slightly darker blue */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    color: black !important;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}

/* Links */
a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}