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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.profile {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

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

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.social-icon {
    color: #666;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.social-icon:hover {
    color: #000;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .social-links {
        gap: 1.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .profile-picture {
        width: 100px;
        height: 100px;
    }
}
