.travel-hub{

    min-height:100vh;

}

.hero{

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;

    background:linear-gradient(
        rgba(10,25,47,.65),
        rgba(10,25,47,.65)
    ),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;

    background-position:center;

}

.hero h1{

    color:white;

    font-size:56px;

    font-weight:800;

    margin-bottom:16px;

}

.hero p{

    color:white;

    font-size:22px;

    margin-bottom:40px;

    max-width:600px;

}

.hero button{

    border:none;

    background:var(--accent);

    color:white;

    padding:18px 42px;

    border-radius:999px;

    font-size:18px;

    cursor:pointer;

    transition:.25s;

    box-shadow:var(--shadow-md);

}

.hero button:hover{