/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding: 0 20px;
}

/* Header */
.header {
    text-align: center;
    margin-top: 30px;
}

.header h1 {
    font-size: 2.5em;
    color: #007bff;
}

/* Link List */
.link-list {
    list-style: none;
    margin-top: 20px;
    padding-left: 0;
    text-align: center;
}

.link-list li {
    margin: 10px 0;
}

.link-list a {
    color: #007bff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
}

.link-list a:hover {
    text-decoration: underline;
}
