body{
font-family:Arial,sans-serif;
margin:0;
background:#0f172a;
color:white;
}

nav{
display:flex;
justify-content:space-between;
padding:20px;
background:#111827;
}

nav ul{
display:flex;
list-style:none;
gap:20px;
}

nav a{
color:white;
text-decoration:none;
}

.hero{
text-align:center;
padding:80px 20px;
}

.hero input{
width:60%;
padding:15px;
border-radius:10px;
border:none;
}

.projects{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
padding:30px;
}

.card{
background:#1e293b;
padding:20px;
width:250px;
border-radius:15px;
}

button{
padding:10px 20px;
border:none;
border-radius:8px;
cursor:pointer;
}

footer{
text-align:center;
padding:20px;
background:#111827;
}
