/* Reset some default styles */
body, h1, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em;
}

h1 {
    font-size: 2em;
}

section {
    margin: 20px;
}

ul {
    list-style: none;
}

li {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center; /* Center vertically */
    text-align: center;
}

a {
    text-decoration: none;
    color: #333;
    display: block;
    width: 100%; /* Make the link fill the entire list item */
}


/* Add a hover effect to links */
a:hover {
    background-color: #eee;
}
