body {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    touch-action: none;
}

#background-image {
        position: absolute;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
		background-image: url("../img/bg.png");
		background-size: cover;
		background-position: center center;
      }

#home-mobile-logo {
    display: block;
    width: 300px;
    height: 130px;
    margin: 0 0 30px 10px;
    background: url("../img/titleLogo.png") no-repeat;
    background-size: contain;
    background-position: center;
}

#home-mobile-form{
    position: relative;
    display: flex;
    width: 80%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    align-items: center;
    justify-content: normal;
    flex-direction: column;
    text-align: center;
    z-index: 20;
    top: 10%;
}

#button-play-store {
    display: block;
    width: 174px;
    height: 52px;
    border: 0;
    background: url("../img/google-play-badge.png") no-repeat center;
    background-size: cover;
    box-sizing: border-box;
    margin: 7px;
}

#button-app-store {
    display: block;
    width: 174px;
    height: 58px;
    border: 0;
    background: url("../img/app-store-badge.png") no-repeat center;
    background-size: cover;
    box-sizing: border-box;
    margin: 7px;
}


.button{
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    background: #444;
    color: #eee;
    border: 0;
    font-size: 16px;
    font-weight: bold;
    vertical-align: top;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 0 rgba(0,0,0,0.4);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-radius: 4px;
}