body {
    font-family: Arial, sans-serif;
    background: #f9fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.profile-card {
    background: #6da6db;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    width: 320px;
}

#avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover; 
    margin-bottom: 15px;
}

#full-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

#email, #github-link, #linkedin-link {
    margin: 8px 0;
}

#hobbies ul {
    list-style: none;
    padding: 0;
}

#hobbies li {
    background: #e9ecef;
    margin: 5px 0;
    padding: 8px;
    border-radius: 6px;
}
