body{
    height: 100vh;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;

    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(-45deg, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(47%, rgba(246,246,246,1)), color-stop(100%, rgba(237,237,237,1)));
    background: -webkit-linear-gradient(-45deg, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=1 );
}

.section{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 80%;
    margin: 0 auto;
}

h1{
    position: relative;
    display: block;
    margin: 0 auto 20px auto;
    padding: 0;
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
}

h1 span{
    font-weight: 300;
}

img{
    position: relative;
    margin: 0 auto;
    width: 256px;
}

.logo{
    margin-bottom: 20px;
}

h2{
    position: relative;
    display: block;
    margin: 0 auto 30px auto;
    padding: 0;
    font-size: 20px;
    line-height: 24px;
}

p{
    position: relative;
    margin: 0 auto 10px auto;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

a{
    color: black;
    text-decoration: underline;
    font-size: 16px;
    line-height: 20px;
}

p:last-of-type{
    margin-bottom: 30px;
}

.playstore{
    margin-bottom: 20px;
}

.playstore img{
    width: 200px;
}