body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff; /* Light background for a wintery effect */
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background: #a52a2a; /* Brownish red for header */
    padding: 40px;
    text-align: center;
    color: white;
}

h1, h2 {
    font-family: 'Great Vibes', cursive; /* Christmasy font for headers */
}

h2 {
    color: #228B22; /* Forest green for headings */
    text-align: center; /* Center align the h2 header */
}

table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background: #ffffff; /* White background for table */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 15px;
    text-align: left;
    border: 1px solid #b5b5b5; /* Grey border for table */
}

th {
    background-color: #a52a2a; /* Brownish red header background */
    color: white;
}

tr:nth-child(even) {
    background-color: #f7f9f7; /* Light green for even rows */
}

ul {
    padding-left: 20px; /* Indent the list */
}

li {
    list-style-type: disc; /* Bullet points for list items */
}

tr:hover {
    background-color: #ff6347; /* Tomato red on hover */
    transform: scale(1.02); /* Slight zoom effect */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

footer {
    text-align: center;
    padding: 15px;
    background: #a52a2a; /* Brownish red footer background */
    color: white;
}

