html,
body {
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    flex-flow: column;
    background-color: #000;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.onairLogo {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.title {
    /* Super Large Title */
    font-style: normal;
    font-weight: 900;
    margin-left: 32px;
    margin-right: 32px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.subTitle {
    /* 24 Large Paragraph */
    font-style: normal;
    font-weight: 400;
    margin-left: 40px;
    margin-right: 40px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #b9b9b9;
}

.image {
    background-repeat: no-repeat;
    background-position: center center;
}

@media only screen and (orientation: portrait) and (min-width: 551px), only screen and (orientation: landscape) and (min-height: 551px) {
    .onairLogo {
        margin-top: 80px;
        height: 56px;
        width: 180px;
    }

    .title {
        font-size: 80px;
        line-height: 96px;
        margin-bottom: 24px;
    }

    .subTitle {
        font-size: 24px;
        line-height: 35px;
    }

    .image {
        width: 500px;
        height: 500px;
    }
}

@media only screen and (orientation: portrait) and (max-width: 550px), only screen and (orientation: landscape) and (max-height: 550px) {
    .onairLogo {
        margin: 16px;
        height: 48px;
        width: 156px;
    }

    .title {
        font-size: 46px;
        line-height: 48px;
        margin-bottom: 16px;
    }

    .subTitle {
        font-size: 14px;
        line-height: 22px;
    }
}

@media only screen and (orientation: portrait) and (max-width: 550px) {
    .image {
        width: 100vw;
        height: 250px;
    }
}

@media only screen and (orientation: landscape) and (max-height: 550px) {
    body {
        flex-wrap: wrap;
        justify-content: center;
    }

    .onairLogo {
        position: absolute;
        top: 0;
    }

    .title {
        max-width: 45vw;
    }

    .subTitle {
        max-width: 45vw;
    }

    .image {
        width: 50vw;
        height: 100vh;
        order: 10;
    }
}
