body{
font-family:'Inter', sans-serif;
background:#f3f4f6;
margin:0;
padding:40px 20px;
color:#1f2933;
}

.container{
max-width:1000px;
margin:auto;
}

header{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
margin-bottom:30px;
text-align:center;
}

h1{
margin:0;
font-size:38px;
}

.subtitle{
color:#6b7280;
margin-top:5px;
}

.links{
margin-top:15px;
}

.links a{
margin:0 10px;
text-decoration:none;
color:#2563eb;
font-weight:600;
}

.links a:hover{
text-decoration:underline;
}

section{
background:white;
padding:25px;
margin-bottom:25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

h2{
margin-top:0;
border-bottom:1px solid #eee;
padding-bottom:8px;
}

.skills{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:15px;
}

.skills span{
background:#e0e7ff;
color:#3730a3;
padding:6px 12px;
border-radius:20px;
font-size:14px;
font-weight:500;
}

.project{
background:#f9fafb;
padding:18px;
margin-top:15px;
border-radius:10px;
border:1px solid #eee;
}

.project h3{
margin-top:0;
}

.tech{
font-size:14px;
color:#6b7280;
margin-top:5px;
}

ul{
padding-left:20px;
}

#counter{
font-weight:700;
color:#2563eb;
}

section{
animation:fadeUp 0.6s ease;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(15px);
}

to{
opacity:1;
transform:translateY(0);
}

}

@media (max-width:768px){
    .top-bar{
flex-direction:column;
align-items:flex-start;
}

.links{
margin-top:10px;
}

body{
padding:20px 10px;
}

header{
padding:20px;
}
.top-bar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
}

.name{
font-size:26px;
color:#2563eb;
margin:0;
font-weight:700;
}

.links a{
font-size:20px;
margin-left:12px;
color:#2563eb;
}

.links a:hover{
opacity:0.7;
}

.subtitle{
margin-top:8px;
color:#6b7280;
font-size:15px;
}

h1{
font-size:28px;
}

.container{
width:100%;
}

.skills{
justify-content:center;
}

.links a{
display:inline-block;
margin:5px;
}

}