*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

/* BODY */
body{
background:#f4f4f4;
color:#333;
}

/* HEADER */
.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 50px;
background:#fff;
position:sticky;
top:0;
}

.logo h2{
font-weight:700;
letter-spacing:2px;
}

.logo span{
font-size:12px;
color:#777;
letter-spacing:3px;
}

/* NAV */
nav a{
margin:0 15px;
text-decoration:none;
color:#555;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#000;
}

/* HERO */
.hero{
text-align:center;
padding:120px 20px;
}

.hero h1{
font-size:60px;
font-weight:600;
margin-bottom:20px;
}

.hero p{
font-size:18px;
color:#666;
max-width:700px;
margin:auto;
}

/* GALLERY */
.gallery{
padding:40px;
}

.gallery img{
width:100%;
border-radius:5px;
}