* {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}
body {
    min-height: 100vh;
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    display: flex;
    color:#fff;
    text-align: center;
    justify-content: center;
    flex-direction:column;
}
h1 {
    font-size: 3rem;
    font-weight: 400;
}
h1 span{
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 16px;
    color: rgba(255, 255, 255, .5);
}
a {
    text-decoration: none;
    color: rgba(255, 255, 255, .5);
    display: block;
    margin-bottom: 24px;
}
a:hover {
    text-decoration: underline;
    color:#fff;
}
.half {
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;    
    /* background-color: rgba(0, 255, 255, .75); */
}
.city {
    font-size: 1.2rem;
    margin: 16px 0;
    display: block;
}


@media (min-width: 576px) {
    h1 {
        font-size: 4rem;
    }
    h1 span{
        font-size: 1.5rem;
    }
    a {
        margin-bottom: 40px;
    }
}
@media (min-width: 768px) {

    a {
        margin-bottom: 64px;
    }    
}
@media (min-width: 992px) {

    a {
        margin-bottom: 80px;
    }    
}