*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;

}

body{

background:#f4f4f4;
color:#333;

}



/* NAVBAR */

nav{

display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:#111;
color:white;

}

nav ul{

list-style:none;
display:flex;
gap:20px;

}

nav a{

color:white;
text-decoration:none;

}



/* HERO */

.hero{

text-align:center;
padding:50px;

}

.hero img{

width:150px;
border-radius:50%;
margin-bottom:20px;

}

button{

padding:10px 20px;
border:none;
background:#111;
color:white;
margin-top:10px;

}



/* SECTIONS */

section{

padding:50px;
text-align:center;

}



/* GRID */

.grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:20px;

}

.card{

background:white;
padding:20px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.1);

}



/* PROJECT */

.project{

background:white;
margin:20px auto;
padding:20px;
width:300px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.1);

}

.project img{

width:100%;
margin-bottom:10px;

}



/* FOOTER */

footer{

background:#111;
color:white;
text-align:center;
padding:20px;

}



/* RESPONSIVE */

@media(max-width:768px){

nav{

flex-direction:column;

}

nav ul{

flex-direction:column;
margin-top:10px;

}

}