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

body{
    font-family: 'Arial', sans-serif;
    background:#000;
    color:#fff;
    min-height:100vh;
    background-image:url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1600');
    background-size:cover;
    background-position:center;
}

.overlay{
    min-height:100vh;
    background:rgba(0,0,0,0.82);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.container{
    max-width:800px;
}

.logo{
    width:260px;
    max-width:90%;
    margin-bottom:30px;
}

h1{
    font-size:5rem;
    color:#f4b43a;
    letter-spacing:4px;
    margin-bottom:15px;
}

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

p{
    font-size:1.3rem;
    line-height:1.8;
    color:#ddd;
}

.divider{
    width:120px;
    height:4px;
    background:#f4b43a;
    margin:30px auto;
}

span{
    color:#f4b43a;
    font-size:1.1rem;
    letter-spacing:2px;
    text-transform:uppercase;
}

@media(max-width:768px){

    h1{
        font-size:3rem;
    }

    h2{
        font-size:1.5rem;
    }

    p{
        font-size:1rem;
    }

    .logo{
        width:200px;
    }
}