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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(135deg,#0f172a,#2563eb);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.card{
    background:#ffffff;
    width:100%;
    max-width:700px;
    padding:50px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
    animation:fadeIn .8s ease;
}

.profile{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid #2563eb;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

h1{
    color:#2563eb;
    font-size:42px;
    margin-bottom:10px;
}

.subtitle{
    color:#666;
    font-size:22px;
    margin-bottom:30px;
}

p{
    color:#444;
    font-size:18px;
    line-height:1.7;
    margin-bottom:18px;
}

.btn{
    display:inline-block;
    margin-top:15px;
    padding:14px 30px;
    background:#2563eb;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media (max-width:700px){

    .card{
        padding:30px;
    }

    .profile{
        width:140px;
        height:140px;
    }

    h1{
        font-size:32px;
    }

    .subtitle{
        font-size:18px;
    }

    p{
        font-size:16px;
    }

h2{
    margin-top:40px;
    margin-bottom:20px;
    color:#2563eb;
    font-size:28px;
}

.contact-info p{
    margin:15px 0;
    font-size:18px;
    display:flex;
    gap:10px;
    align-items:center;
    flex-wrap:wrap;
}

.contact-info a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.contact-info a:hover{
    color:#1d4ed8;
    text-decoration:underline;
}

}