*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0b0b0b;
    color:#ffffff;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.7;
}

header{
    text-align:center;
    padding:30px 20px 60px;
    background:#111111;
    border-bottom:3px solid #d4af37;
}

/* ===== BANNER ===== */

.banner{
    display:block;
    width:100%;
    max-width:1400px;
    height:auto;
    margin:0 auto 35px auto;
    border-radius:12px;
    box-shadow:0 0 30px rgba(212,175,55,.35);
}

/* ================== */

h1{
    font-size:56px;
    color:#d4af37;
    margin-bottom:20px;
}

header p{
    max-width:900px;
    margin:15px auto;
    color:#dddddd;
    font-size:22px;
}

.buttons{
    margin-top:40px;
}

.button{
    display:inline-block;
    margin:10px;
    padding:15px 35px;
    background:#d4af37;
    color:#111;
    text-decoration:none;
    font-size:20px;
    font-weight:bold;
    border-radius:8px;
    transition:.3s;
}

.button:hover{
    background:#ffffff;
}

nav{
    background:#1b1b1b;
    text-align:center;
    padding:20px;
    border-bottom:1px solid #333;
}

nav a{
    color:#d4af37;
    text-decoration:none;
    font-size:20px;
    font-weight:bold;
    margin:0 20px;
    transition:.3s;
}

nav a:hover{
    color:white;
}

section{
    max-width:1200px;
    margin:auto;
    padding:70px 30px;
}

h2{
    color:#d4af37;
    font-size:38px;
    margin-bottom:25px;
    border-left:6px solid #d4af37;
    padding-left:18px;
}

section p{
    font-size:20px;
    color:#dddddd;
}

footer{
    background:#111;
    text-align:center;
    padding:30px;
    border-top:2px solid #d4af37;
    color:#999;
    margin-top:60px;
}