body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #007BFF;
}

.link-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-box {
    background: #e9ecef;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.link-box:hover {
    background: #dee2e6;
}

.link-box h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: #343a40;
}

.link-box a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    transition: color 0.3s ease;
}

.link-box a:hover {
    color: #0056b3;
}
