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

body{
background:#0b0b0b;
overflow-x:hidden;
color:#fff;
}

.background{
position:fixed;
width:100%;
height:100%;
background:
radial-gradient(circle at top,#1d4ed8 0%,transparent 35%),
radial-gradient(circle at bottom,#06b6d4 0%,transparent 30%),
#080808;
animation:bgMove 8s ease-in-out infinite alternate;
z-index:-1;
}

@keyframes bgMove{
0%{filter:hue-rotate(0deg);}
100%{filter:hue-rotate(25deg);}
}

.glass{
width:90%;
max-width:850px;
margin:50px auto;
padding:40px;
border-radius:35px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,.15);
text-align:center;
box-shadow:0 0 60px rgba(0,162,255,.25);
}

.profile{
position:relative;
width:170px;
height:170px;
margin:auto;
}

.profile img{
width:170px;
height:170px;
border-radius:50%;
object-fit:cover;
border:4px solid #33cfff;
box-shadow:0 0 35px #00bfff;
transition:.5s;
}

.profile img:hover{
transform:scale(1.08) rotate(4deg);
}

.online{
position:absolute;
bottom:15px;
right:10px;
width:24px;
height:24px;
border-radius:50%;
background:#00ff73;
border:3px solid #0b0b0b;
box-shadow:0 0 15px #00ff73;
}

h1{
margin-top:25px;
font-size:45px;
letter-spacing:8px;
}

#typing{
color:#32d7ff;
margin-top:10px;
font-size:24px;
height:35px;
}

.bio{
margin-top:25px;
line-height:1.9;
opacity:.9;
font-size:18px;
}

.skills{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:12px;
margin-top:35px;
}

.skills span{
padding:10px 20px;
background:rgba(255,255,255,.08);
border-radius:50px;
border:1px solid rgba(255,255,255,.15);
transition:.3s;
}

.skills span:hover{
background:#0ea5e9;
transform:translateY(-4px);
}

.buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}

.btn{
padding:16px 38px;
border-radius:60px;
text-decoration:none;
color:white;
font-size:18px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,.18);
transition:.35s;
box-shadow:0 0 25px rgba(0,180,255,.25);
}

.btn:hover{
transform:translateY(-6px);
box-shadow:0 0 35px #00d4ff;
background:#00b7ff;
}

.about{
margin-top:55px;
text-align:left;
}

.about h3{
font-size:30px;
margin-bottom:20px;
}

.about p{
line-height:2;
opacity:.85;
}

.social{
margin-top:45px;
font-size:34px;
display:flex;
justify-content:center;
gap:30px;
}

.social i{
transition:.4s;
cursor:pointer;
}

.social i:hover{
transform:scale(1.3);
color:#1ec8ff;
}

footer{
margin-top:50px;
opacity:.6;
font-size:15px;
}

@media(max-width:700px){

h1{
font-size:34px;
}

.bio{
font-size:16px;
}

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

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

.glass{
padding:25px;
}

}