*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* Background */
body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(to bottom,#041c32,#0a2a43);
}

/* Card */
.card{
    width:380px;
    padding:40px 30px;
    background:#13293d;
    border-radius:20px;
    text-align:center;
    border:2px solid #1fb6ff;
    box-shadow:0 0 25px rgba(31,182,255,0.5);
    transition:0.4s ease;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 40px rgba(31,182,255,0.8);
}

/* Profile Image */
.card img{
    width:110px;
    height:110px;
    border-radius:50%;
    border:3px solid #1fb6ff;
    margin-bottom:20px;
}

/* Heading */
.card h1{
    font-size:26px;
    margin-bottom:10px;
    color:white;
}

/* Subtitle */
.card h3{
    font-weight:400;
    font-size:15px;
    color:#9ecce7;
    margin-bottom:20px;
}

/* Description */
.card p{
    font-size:14px;
    line-height:1.6;
    color:#cfd8dc;
    margin-bottom:25px;
}

/* Connect Text */
.connect{
    color:#1fb6ff;
    margin-bottom:15px;
    font-weight:600;
}

/* Buttons */
.buttons{
    display:flex;
    justify-content:center;
    gap:10px;
}

.buttons a{
    text-decoration:none;
    padding:8px 15px;
    border:1px solid #1fb6ff;
    border-radius:20px;
    color:#1fb6ff;
    font-size:13px;
    transition:0.3s;
}

.buttons a:hover{
    background:#1fb6ff;
    color:#0a2a43;
    box-shadow:0 0 15px #1fb6ff;
}

/* Responsive */
@media(max-width:420px){
    .card{
        width:90%;
        padding:30px 20px;
    }
}