/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body Styling */
body {
    background-color: #f4f7f6;
    color: #333;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header Styling */
header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5rem;
    color: #444;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #666;
}

/* Link List Styling */
.link-list {
    list-style-type: none;
    padding: 0;
    width: 100%;
    max-width: 600px;
}

.link-list li {
    margin-bottom: 20px;
}

.link-list a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #007bff;
    background-color: #fff;
    padding: 15px 20px;
    display: block;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.link-list a:hover {
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Footer Styling */
footer {
    text-align: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    width: 100%;
}

footer p {
    font-size: 1rem;
    color: #888;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
