body{
margin:0;
font-family:Poppins;
background:#0f172a;
color:white;
}

.header{
position:fixed;
width:100%;
display:flex;
justify-content:space-between;
padding:20px;
background:rgba(0,0,0,0.5);
backdrop-filter:blur(10px);
}

nav a{
color:white;
margin:10px;
text-decoration:none;
}

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.profile{
width:180px;
border-radius:50%;
margin-bottom:20px;
}

.btn{
display:inline-block;
margin-top:20px;
padding:12px 25px;
background:#3b82f6;
border-radius:10px;
text-decoration:none;
color:white;
}

.skills-container{
display:flex;
justify-content:center;
flex-wrap:wrap;
}

.skill{
background:#1e293b;
padding:15px;
margin:10px;
border-radius:10px;
}

.project-container{
display:flex;
justify-content:center;
flex-wrap:wrap;
}

.card{
background:#1e293b;
padding:20px;
margin:10px;
border-radius:15px;
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
}

footer{
text-align:center;
padding:20px;
}
