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

body{
    font-family: Arial, sans-serif;
    background:#111;
    color:#fff;
    line-height:1.6;
}

.hero{
    height:100vh;
    background:linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1600&q=80') center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay h1{
    font-size:4rem;
    color:#F8E7B0;
}

.overlay p{
    font-size:1.4rem;
    margin:20px 0;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    background:#8B5A2B;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
}

.btn:hover{
    background:#a96c35;
}

main{
    padding:50px 8%;
}

.category{
    margin-bottom:50px;
    background:#1a1a1a;
    padding:25px;
    border-radius:20px;
    border:1px solid #8B5A2B;
}

.category h2{
    color:#F8E7B0;
    margin-bottom:20px;
    font-size:2rem;
}

.item{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.item:last-child{
    border-bottom:none;
}

footer{
    text-align:center;
    padding:30px;
    background:#0d0d0d;
    color:#aaa;
}

@media(max-width:768px){
    .overlay h1{
        font-size:2.5rem;
    }

    .item{
        font-size:.95rem;
    }
}
