*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Georgia, serif;
    background:#111;
    color:white;
}

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.65)),
    url("property.jpg");
    background-size:cover;
    background-position:center;
}

.overlay{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

h1{
    font-size:4rem;
    letter-spacing:4px;
}

.tagline{
    margin-top:15px;
    font-size:1.4rem;
    color:#d4af37;
}

.status{
    margin-top:35px;
    padding:12px 28px;
    border:1px solid #d4af37;
    color:#d4af37;
    border-radius:30px;
}

.about{
    max-width:900px;
    margin:auto;
    padding:80px 20px;
    text-align:center;
}

.about h2{
    margin-bottom:25px;
    color:#d4af37;
}

.about p{
    line-height:1.8;
    margin-bottom:15px;
}

footer{
    text-align:center;
    padding:30px;
    border-top:1px solid #333;
    color:#888;
}

@media(max-width:768px){

    h1{
        font-size:2.5rem;
    }

    .tagline{
        font-size:1.1rem;
    }
}