*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:linear-gradient(135deg,#ffe5ec,#ffd6e0,#fff0f5);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.container{
    width:100%;
    max-width:900px;
}

.card{
    background:#ffffff;
    border-radius:25px;
    padding:45px;
    text-align:center;
    box-shadow:0 20px 50px rgba(255,105,180,.15);
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.profile{
    width:170px;
    height:170px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid #ffc2d1;
    margin-bottom:20px;
}

h1{
    color:#c2196e;
    font-size:35px;
}

h3{
    color:#888;
    font-weight:400;
    margin-top:5px;
    margin-bottom:20px;
}

.card p{
    color:#555;
    line-height:1.8;
}

.info{
    margin-top:35px;
}

.item{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin:15px 0;
    font-size:17px;
}

.item span{
    font-size:22px;
}

.button{
    margin-top:35px;
}

.button a{
    display:inline-block;
    margin:10px;
    text-decoration:none;
    background:#ff8fab;
    color:white;
    padding:13px 28px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.button a:hover{
    background:#fb6f92;
    transform:scale(1.05);
}

@media(max-width:768px){

.card{
        padding:30px;
}

h1{
        font-size:28px;
}

h3{
        font-size:18px;
}

.profile{
        width:140px;
        height:140px;
}

.button a{
        display:block;
        margin:10px auto;
        width:220px;
}

}