*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
background:#111;
color:#fff;
line-height:1.5;
}

a{
color:inherit;
text-decoration:none;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:30px 40px;
font-size:14px;
letter-spacing:.08em;
background-color: #090909;
}

.nav nav a{
margin-left:30px;
opacity:.7;
}

.nav nav a:hover{
opacity:1;
}

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

.hero h1{
font-size:42px;
font-weight:500;
letter-spacing:.05em;
}

.hero p{
margin-top:10px;
opacity:.6;
}

.work{
padding:60px 40px;
}

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

.project img{
width:100%;
display:block;
}

.about{
padding:100px 40px;
max-width:600px;
margin:auto;
text-align:center;
opacity:.8;
}

.footer{
padding:40px;
text-align:center;
opacity:.5;
font-size:13px;
background-color: #090909;
}