body {
    font-family: "Segoe UI", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}

.profile-container {
    width: 80%;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.profile-container:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.profile-header {
    position: relative;
    height: 180px;
    background: linear-gradient(45deg, #6e8efb, #a777e3);
}

.profile-photo {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #eee;
    border: 4px solid #ffffff;
    background-image: url('./perfil.png');
    background-size: cover;
    background-position: center;
}


h2, p {
    text-align: center;
    margin: 16px 0;
}


h2 {
    margin-top: 50px;
    font-size: 24px;
    font-weight: 500;
}


.contact-info {
    margin: 0 16px 24px;
    font-size: 16px;
}


strong {
    color: #555;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: #555;
    font-size: 24px;
    transition: color 0.3s;

}

.social-links a:hover {
    color: #6e8efb;
}
