*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    font-size: 62.5%;
}
body{
    font-family: 'Segoe UI','Times New Roman', Times, serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    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.2);
    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('foto.jpeg');
    background-size: cover;
    background-position: center;
}
h2,p{
    text-align: center;
    margin: 16px 0;
}
h2{
    margin-top: 50px;
    font-size: 2.4rem;
    font-weight: 600;
}
p{
    font-weight: 300;
    font-size: 1.4rem;
}
.contact-info{
    margin: 0 16px 24px;
    font-size: 16px;
}
strong{
    color: #555;
    font-weight: 600;
}
.social-links{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.social-links a{
    text-decoration: none;
    color:#555;
    font-size: 24px;
    transition: color 0.3s;
}
img{
    width: 20px;
    height: 20px;
     
    background-size: cover;
    background-repeat: repeat;
}
