body{
margin:0;
font-family: "Garamond", serif;
background:#1b1a17;
color:#f4e6c1;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#3b2f1e;
border-bottom:2px solid #8c6b2e;
}

header h1{
font-size:32px;
letter-spacing:2px;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#f4e6c1;
font-weight:bold;
}

.hero{
text-align:center;
padding:100px 20px;
background:
linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url("https://images.unsplash.com/photo-1606313564200-e75d5e30476c");
background-size:cover;
}

.hero h2{
font-size:48px;
margin-bottom:10px;
}

.section{
padding:60px 40px;
max-width:1000px;
margin:auto;
}

.card{
background:#2d261b;
padding:25px;
border:1px solid #8c6b2e;
margin-bottom:20px;
}

.button{
display:inline-block;
margin-top:10px;
padding:10px 18px;
background:#8c6b2e;
color:white;
text-decoration:none;
}

footer{
text-align:center;
padding:30px;
background:#3b2f1e;
}