
html,body,div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,big,cite,code,
del,dfn,em,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,
b,u,i,center,
dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary,
time,mark,audio,video{
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    font:inherit;
    vertical-align:baseline;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section{
    display:block;
}
body{
    line-height:1;
}
ol,ul{
    list-style:none;
}
blockquote,q{
    quotes:none;
}
blockquote:before,blockquote:after,
q:before,q:after{
    content:’’;
    content:none;
}
/* remember to define visible focus styles! 
:focus{
    outline:?????;
} */

/* remember to highlight inserts somehow! */
ins{
    text-decoration:none;
}
del{
    text-decoration:line-through;
}

table{
    border-collapse:collapse;
    border-spacing:0;
}





/*------------------------------------*\
    $MAIN
\*------------------------------------*/
/* GO! */



html, 
body {
    height: 100%;
}

body {
	margin: 0;
	width: 100%;
	height: 100vh;
	font-family: sans-serif;
	color: #fff;
	background: linear-gradient(-45deg, #CF0292, #C102D9, #7B0CC2, #4C02D9 );
	background-size: 400% 400%;
	-webkit-animation: gradientBG 10s ease infinite;
	        animation: gradientBG 10s ease infinite;
}

.main {
    height: 100%;
    width: 100%;
    display: table;
    text-align: center;
}

.wrapper {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    width: 300px;
}


h1 {
    font-weight: 900;
    margin-bottom: 24px;
    font-size: 48px;
}

h2 {
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 18px;
}

h3 {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.tos-wrapper p{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400px;
    margin-bottom: 24px;
}

p 

a {
	text-decoration: none;
	color: #FFFFFF;
}

ul {
    list-style-type: square;
    margin-left: 17px;
    margin-top: -16px;
    margin: -16px 0 16px 18px;
}

li {
    margin-bottom: 8px;
}

strong {
    font-weight: 900;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    padding-bottom: 16px;
}

footer p {
    float: right;
    color: #FFFFFF;
    font-weight: 900;
    padding: 0 8px 0 8px;
}

.button {
    background-color:rgba(255,255,255,.3);
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    padding-top: 16px;
    cursor: pointer;
    width: 96px;
    border-radius: 32px;
    font-weight: 900;
}

.download-button {
    margin-top: 24px;
}

.tos-wrapper {
    height: 100%;
    padding: 48px 64px;
}




@-webkit-keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
/* 
@media screen and (max-device-width: 480px) {
    body {
        background-color: red!important;
    }

    h1 {
        font-size: 72px;
    }

    h2 {
        margin-bottom: 24px;
        font-size: 42px;
    }
} */