/* Reset some default styles */
body, ul {
    margin: 0;
    padding: 0;
}

/* Set a nice font and background color */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

/* Center the header and set its styles */
header {
    text-align: center;
    padding: 2rem 0;
    background-color: #4CAF50;
    color: white;
}

/* Style the link list */
.link-list {
    list-style-type: none;
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

/* Style the list items and links */
.link-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #f2f2f2;
}

.link-list li:last-child {
    border-bottom: none;
}

.link-list a {
    text-decoration: none;
    color: #4CAF50;
    font-size: 1.2rem;
}

.link-list a:hover {
    text-decoration: underline;
}
