html,
body {
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row;
    width: 100vw;
    height: 100vh;
}

@font-face {
    font-family: 'Across The Road';
    src: url('across-the-road.ttf');
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    color: #fff;
    margin: 0 0 10px 0;
    font-family: 'Across The Road', sans-serif;
    font-size: 60px;
    font-weight: 300;
}

/* MAIN CONTAINER CLASS */
.location {
    position: relative;
    flex: 1 1 33%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BACKGROUNDS */
.location-malta {
    background: url('malta_updated.jpg') no-repeat center center /cover;
}

.location-valletta {
    background: url('valletta.jpg') no-repeat center center /cover;
}

.location-budapest {
    background: url('budapest.jpg') no-repeat center center /cover;
}

/* DARK OVERLAY */
.location:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31,38,46,0.5);
    z-index: 1;
}

/* CENTERED CONTENT BOX */
.inner {
    border: 1px solid rgba(255, 255, 255, .5);
    z-index: 2;
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner:hover {
    border: 1px solid rgba(0,160,80,0);
}

/* CORNER ANIMATED BORDERS */
.inner::before,
.inner::after {
    width: 100%;
    height: 100%;
    z-index: 3;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    transform: scale(0);
    transition: 0.5s;
}

.inner::before {
    border-bottom: 3px solid #FFF;
    border-left: 3px solid #FFF;
    transform-origin: 0 100%;
}

.inner::after {
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform-origin: 100% 0%;
}

.inner:hover::after,
.inner:hover::before {
    transform: scale(1.01);
}

/* TEXT & BUTTON AREA */
.inner-content {
    text-align: center;
    z-index: 4;
}

.inner-content .button {
    display: inline-block;
    margin-top: 100px;
    background-color: #fff;
    color: #000;
    text-transform: uppercase;
    width: 260px;
    padding: 10px 0;
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
    cursor: pointer;
}

.inner-content .button-outline {
    display: inline-block;
    margin-top: 30px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    text-transform: uppercase;
    width: 260px;
    padding: 10px 0;
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
    cursor: pointer;
}

/* COMING SOON STYLE */
.coming-soon {
    margin-top: 40px;
    font-size: 32px;
    color: #fff;
    font-family: 'Noto Sans', sans-serif;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* RESPONSIVE FIXES */
@media(max-width: 992px) {
    html,
    body {
        flex-flow: column;
    }
    .inner-content .button {
        margin-top: 30px;
    }
}

@media(max-width: 480px) {
    .inner {
        border: 0;
    }
    .inner::before,
    .inner::after {
        display: none;
    }
}
