*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f4f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    color: #333333; 
}
.profile-card {
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    
    width: 90%; 
    max-width: 450px; 
    
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.2); 
    border: 1px solid #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(220, 20, 60, 0.4);
}

.profile-img {
            width: 120px;
            height: 120px;
            border-radius: 50%; 
            object-fit: cover;
            border: 3px solid crimson; 
            padding: 3px;
            box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3); 
            margin-bottom: 20px;
}
.h2{
    color: crimson;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-links{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; 
    
    background-color: #252525;
    text-decoration: none;
    color: #ddd;
    font-size: 15px; 
    padding: 12px 10px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}
.social-links i {
    font-size: 18px;
    color: crimson;
}

.social-links a:hover {
    background-color: crimson;
    color: #fff;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
    transform: translateY(-3px);
}
.social-links a:hover i {
    color: #fff;
}