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

body{

    background:#000;

    color:white;

    font-family:'Lora',serif;

}

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.overlay{

    position:absolute;

    width:100%;

    height:100%;

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

}

.content{

    position:relative;

    z-index:10;

    width:90%;

    max-width:900px;

}

.portrait{

    width:420px;

    max-width:100%;

    border-radius:18px;

    box-shadow:0 0 40px rgba(212,175,55,.4);

}

h1{

    margin-top:20px;

    color:#D4AF37;

    font-family:'Cinzel',serif;

    font-size:60px;

}

h2{

    margin-top:10px;

    color:#ffffff;

}

h3{

    color:#D4AF37;

    letter-spacing:3px;

    margin-top:30px;

    text-transform:uppercase;

}

h4{

    margin-top:20px;

    color:#D4AF37;

    font-size:28px;

}

.intro{

    width:80%;

    margin:40px auto;

    line-height:1.8;

    font-size:22px;

}

.button{

    display:inline-block;

    padding:18px 45px;

    text-decoration:none;

    background:#D4AF37;

    color:black;

    border-radius:50px;

    font-weight:bold;

    transition:.4s;

}

.button:hover{

    background:white;

}

.container{

    width:90%;

    max-width:1100px;

    margin:auto;

    padding:100px 0;

}

.button-group{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
    margin-top:40px;
}

.button{

    display:inline-block;

    width:220px;

    padding:18px 0;

    text-align:center;

    text-decoration:none;

    background:#D4AF37;

    color:#000;

    border-radius:50px;

    font-weight:bold;

    transition:.4s;

}

.button:hover{

    background:#fff;

    color:#000;

}