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

body{

    background:#0b0b0b;
    color:white;

    font-family:Poppins,sans-serif;

    display:flex;
    justify-content:center;
    align-items:center;

    height:100vh;

    text-align:center;

}

.container{

    max-width:700px;
    padding:40px;

}

h1{

    font-family:"Cormorant Garamond",serif;
    font-size:64px;

    color:#d4af37;

    margin-bottom:15px;

}

.tagline{

    font-size:20px;

    color:#ddd;

    margin-bottom:40px;

}

.divider{

    width:120px;
    height:2px;

    background:#d4af37;

    margin:30px auto;

}

h2{

    letter-spacing:5px;

    margin-bottom:20px;

    color:white;

}

p{

    line-height:1.8;

    color:#bbb;

}

.button{

    display:inline-block;

    margin-top:40px;

    text-decoration:none;

    background:#d4af37;

    color:black;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.button:hover{

    background:white;

}
