body {
    background: url("background.png") no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: Verdana;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.category {
    background-color: #414580; /* Darker section background */
    padding: 10px;
    margin-bottom: 20px;
    display: inline-block;
    width: 80%;
    text-align: left;
}

h2 {
    font-size: 1.5em;
    padding: 10px;
    background-color: #565ba8; /* Slightly lighter background for headers */
    margin: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    background-color: #6374c7; /* Dark gray list items */
    padding: 10px;
    border-bottom: 1px solid #414580; /* Thin separator */
}

li:last-child {
    border-bottom: none; /* Remove border on the last item */
}

a {
    text-decoration: none;
    color: #454887; /* Light gray text */
    font-style: italic;
    display: block;
}

a:hover {
    color: #505396;
}