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

body{
background:#0f172a;
color:white;
}

header{
display:flex;
justify-content:space-between;
padding:20px 60px;
background:#020617;
position:sticky;
top:0;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#94a3b8;
}

nav a:hover{
color:white;
}

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

.hero h2{
font-size:48px;
margin-bottom:10px;
}

.hero p{
color:#94a3b8;
margin-bottom:20px;
}

button{
padding:12px 25px;
border:none;
background:#6366f1;
color:white;
border-radius:8px;
cursor:pointer;
}

button:hover

section{
padding:80px 60px;
}

.about p{
max-width:700px;
color:#94a3b8;
}

.projects h2{
margin-bottom:40px;
}

.project-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

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

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

.card span{
font-size:12px;
color:#6366f1;
}

.contact p{
color:#94a3b8;
margin:10px 0;
}

footer{
text-align:center;
padding:20px;
background:#020617;
color:#64748b;
}
