html {
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
}

body {
    -webkit-text-size-adjust: none;
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    background-image: url(./images/background.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    font-weight: 100;
    overflow: auto;
}

.sprite-Logo {
    background-image: url(./images/logo.svg);
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    margin-top: 25px;
    width: 110px;
    height: 150px;
}

.logo-text {
    font-size: 74.4px;
    color: #000000;
    font-family: SFUIDisplay;
}

.info-text {
    font-size: 28.8px;
    line-height: 1.25;
    color: #000000;
    white-space: pre-line;
    font-family: SFUIDisplay;
}

.app-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.app-container a img {
    width: 100%;
}

.container {
    margin: 0 auto;
    margin-top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left {
    display: inline-block;
    margin: 25px 0;
    text-align: left;
}

.right.mobile-banner {
    background-image: url(./images/mobile.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 35vw;
    width: 35%;
}

@media screen and (max-width: 900px) {
    .container {
        flex-direction: column-reverse;
    }
    .logo-text {
        font-size: 3em;
    }
    .info-text {
        font-size: 1em;
    }
    .app-container {
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
    }
    .left {
        text-align: center;
    }
    .right.mobile-banner {
        width: 88%;
        height: 100vw;
    }
}
