@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
}

html, body, main {
    height: 100%;
    width: 100%;
}

header {
    height: 50px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 25px;
    color: #101010;
    font-weight: 400;
    letter-spacing: 2px;
    box-sizing: border-box;
}

.hotel-image {
    width: 100%;
    height: calc(100% - 50px);
    display: flex;
    background-color: papayawhip;
    background-image: url('../images/jie_jie_beach_hotel.jpg');
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
}

.content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 10px;
    color: #FFFFFF;
    font-size: inherit;
    letter-spacing: 2px;
    font-family: "Bebas Neue", sans-serif;
    background: rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
}

.for-reservations {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}