body {
    font-family: 'Manrope', sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    text-align: center;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3rem;
}

.links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.link {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}