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

body{

font-family:Arial,Helvetica,sans-serif;

background:#F7F7F4;

color:white;

}

nav{

position:absolute;

top:35px;

left:50px;

right:50px;

display:flex;

justify-content:space-between;

align-items:center;

z-index:100;

}

.logo{

height:65px;

}

nav ul{

display:flex;

gap:45px;

list-style:none;

}

nav a{

text-decoration:none;

color:white;

font-size:15px;

letter-spacing:1px;

}

.hero{

height:100vh;

background:url("assets/hero.jpg");

background-size:cover;

background-position:center;

display:flex;

align-items:center;

padding-left:8%;

position:relative;

}

.hero::before{

content:"";

position:absolute;

inset:0;

background:rgba(0,0,0,.35);

}

.overlay{

position:relative;

max-width:650px;

z-index:2;

}

h1{

font-size:74px;

font-weight:300;

margin-bottom:20px;

}

h2{

font-size:28px;

font-weight:300;

margin-bottom:30px;

letter-spacing:1px;

}

p{

font-size:18px;

line-height:1.8;

max-width:500px;

}