* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #333;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #0077b5;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.linkedin-icon {
    width: 30px;
    height: 30px;
    color: inherit;
}

.linkedin-link:hover {
    transform: scale(1.05);
    color: #005885;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .linkedin-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
