@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

*{
	margin:0;
	padding:0;
	font:inherit;
	box-sizing:border-box;
}
html{
	font-size:16px;
	line-height:1;
	font-family:Merriweather;
	color:#fff;
	background-color:black;
}
html,
body,
header{
	width:100%;
}
body {
	padding: 2em;
}
header{
	text-align: center;
}
.app-title{
	color: #333;
	font-weight:bold;
	font-size:1.5em;
	user-select:none;
	margin-bottom: 6rem;
}
h1{
	font-size:2em;
	color:white;
	line-height: 1.1;
	margin-bottom: 0.6em;
}
h1 strong{
	font-weight: 900;
}
em{
	font-style: italic;
}
.download {
	display: inline-block;
	position: relative;
	z-index: 0;
	user-select:none;
	
}
.download::before {
	content: "";
	position: absolute;
	top: -1em;
	left: -1em;
	right: -1em;
	bottom: -1em;
	z-index: -1;
	border-radius: inherit;
	background: radial-gradient(ellipse at center, rgba(255,234,125,1), rgba(137,70,28,1));
	filter: blur(2em);
	opacity: 0.8;
	pointer-events: none;
	transition:scale 1s;
}
.download:hover::before{
	scale: 1.5;
}
img.example{
	display:block;
	margin:0 auto;
	max-width:24em;
	width:100%;
	margin:0 auto 2em auto;
}
p{
	line-height:1.5;
	color: hsla(0,0%,100%,0.6);
	margin-bottom: 2em;
}
header p{
	text-align: center;
}
p strong{
	font-weight: bold;
	color: white;
}
.panel{
	margin: 8em auto;
	max-width: 48em;
}
.panel .text{
	max-width: 30em;
	margin: 0 auto;
}
.quotes h2{
	font-weight:300;
}
.quotes p{
	margin-bottom:3em;
}
.get{
	text-align: center;
	background: #E0342F;
	padding: 4em 2em;
	border-radius: 1em;
	max-width: 76.8em;
}
h2{
	font-size:2em;
	color:white;
	line-height: 1.1;
	font-weight: bold;
	margin-bottom: 0.6em;
}
.overlay{
	width: 100%;
	max-width: 60em;
	margin: 0 auto;
	display: block;
	border-radius: 1em;
}
footer{
	font-size:0.8em;
	text-align:center;
	color:#999;
}
footer a{
	color:white;
	font-weight:bold;
	text-decoration:none;
	text-wrap:nowrap;
}
footer a:hover{
	text-decoration: underline;
}
footer ul{
	list-style: none;
}
footer li{
	margin-bottom: 2em;
}
.hide{
	display:none;
}
@media (min-width: 65em){
	html{
		background-color: #000;
	}
	.app-title{
		margin-bottom: 12rem;
	}
	h1 {
		font-size:3em;
	}
	h1 br {
		display: none;
	}
	.panel{
		margin: 12em auto;
	}
	.get{
		padding: 12em;
	}
	footer{
		text-align:right;
	}
	footer li {
		display:inline;
		margin: 0 1em;
	}
}
::selection {
	color: white;
	background-color: #3B82F7;
}
