html {
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
}
@font-face {
   font-family: Roboto-Regular;
   src: url(Roboto-Regular.ttf);
}

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


.sprite{
    width: 49%;
}

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

.logo-text {
    width: 70%;
    height: 50px;
    background-image: url(./images/title.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.info-text {
    font-size: 28.8px;

    color: #000000;
    white-space: pre-line;
}

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

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

.container {
    height: 100vh;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 25;
}


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

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

.grass{
    position: fixed;
    bottom: 0px;
    height: 100px;
    width: 100%;
    background-image: url(./images/grass.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: repeat-x;
}

.bamboo{
    position: fixed;
    right: -3px;
    top: 0px;
    bottom: 0px;
    text-align: right;
    width: 40%;
    background-image: url(./images/bamboo-panda.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    z-index: -1;
}

.panda{
    display: none;
    background-image: url(./images/panda.png);
    position: fixed;
    background-image: url(./images/panda.png);
    bottom: 0;
    right: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 11%;
    height: 30vh;
    background-position: bottom;
}

@media screen and (max-width: 1150px) {
    .grass{
        z-index: 10;
    }
}
@media screen and (max-width: 900px) {
    .container {
        width: auto;
        margin: 0 auto;
        flex-direction: column-reverse;
        position: fixed;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        justify-content: baseline;
        z-index: 1;
    }
    .logo-text {
        margin: 0 auto;
        background-position: center;
    }
    .info-text {
        font-size: 1.3em;
    }
    .app-container {
        display: flex;
        justify-content: space-between;
        margin: 30px auto 0;
        width: 85%;
    }
    .left {
        text-align: center;
    }
    .right.mobile-banner {
        background-image: url(./images/mobile-sm.png);
        width: 88%;
        height: 100vw;
    }
    .grass{
        height: 70px;
        width: 200%;
    }
    .bamboo{
        display: none;
    }
    .panda{
        display: inherit;
        width: 21%;
        z-index: 2;
    }

    .links{
        text-align: center !important;
    }
}
