:root {
--accent:#C87941;
--accent-lt:#E09A65;
--accent-dk:#A0602E;
--ink:#0F0F0F;
--ink2:#1A1A1A;
--ink3:#242424;
--ink4:#2E2E2E;
--steel:#3A3A3A;
--mist:#888;
--fog:#BBB;
--parchment:#F5F0EA;
--white:#FFF;
--ff-display:'Playfair Display', serif;
--ff-body:'Source Sans 3', sans-serif;
}

body {
margin:0;
font-family:var(--ff-body);
background:var(--ink);
color:var(--parchment);
}

nav {
position:sticky;
top:0;
background:var(--ink2);
padding:15px;
display:flex;
justify-content:space-between;
z-index:1000;
}

a { color:var(--accent); text-decoration:none; }

.hero {
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2');
background-size:cover;
}

h1,h2,h3 {
font-family:var(--ff-display);
}

.btn {
background:var(--accent);
padding:12px 20px;
color:white;
display:inline-block;
margin:10px;
}