*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:
        radial-gradient(circle at top,#3a3a70,#15151f 45%,#090909);
    color:#fff;
}

.container{
    width:560px;
    max-width:95%;
    text-align:center;
}

.avatar{
    width:130px;
    height:130px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #fff;
    margin-bottom:20px;

    box-shadow:
        0 0 20px #5daeff,
        0 0 50px #3b82f6;
}

h1{
    font-size:34px;
    font-weight:700;
    margin-bottom:8px;
}

.bio{
    opacity:.8;
    margin-bottom:35px;
    line-height:1.6;
}

.links{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.links a{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:12px;

    text-decoration:none;
    color:#fff;

    padding:15px 18px;

    border-radius:15px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    transition:.25s;

    font-size:17px;
    font-weight:500;
}

.links a i{
    width:28px;
    font-size:22px;
    text-align:center;
}

.links a:hover{
    transform:translateY(-4px) scale(1.03);

    background:#3b82f6;

    box-shadow:
        0 0 15px #3b82f6,
        0 0 35px #3b82f6;
}

.links a:nth-child(1) i{color:#ff0000;}
.links a:nth-child(2) i{color:#1877f2;}
.links a:nth-child(3) i{color:#ffffff;}
.links a:nth-child(4) i{color:#ffcc00;}
.links a:nth-child(5) i{color:#5bc0ff;}
.links a:nth-child(6) i{color:#ff9933;}
.links a:nth-child(7) i{color:#00d084;}
.links a:nth-child(8) i{color:#ffffff;}
.links a:nth-child(9) i{color:#d6d6d6;}
.links a:nth-child(10) i{color:#1ed760;}

.links a:hover i{
    color:#fff;
}

@media(max-width:650px){

    .container{
        width:380px;
    }

    .links{
        grid-template-columns:1fr;
    }

    .avatar{
        width:110px;
        height:110px;
    }

    h1{
        font-size:28px;
    }

    .links a{
        font-size:16px;
        padding:14px 16px;
    }

    .links a i{
        font-size:20px;
        width:24px;
    }

}