html, body{
	height: 100%;
	margin: 0;
}

body{
	font-family: 'IBM Plex Sans', sans-serif;
	color:#fff;
	font-size:20px;
	position: relative;
}

#site{
	display: flex;
	min-height: 100%; 
	width:100%;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	background-image: linear-gradient(180deg, #E95E0F 0%, #E9A4C8 100%);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

header{
	display: flex;
	text-align: center;
	align-items:center;
	height:90px;
}

footer{
	display: flex;
	width:100%;
	height:40px;
	text-align: center;
	align-items:center;
	justify-content: center;
	font-size: 12px;
}

h1{
	font-weight: 600;
	margin-bottom:0;
	font-size: 1.5em;
}
h2{
	font-weight: 400;
	margin-top: 0;
	font-size: 1.5em;
}

ul{
	padding-left:1.5em;
}

li {

	list-style: none;
	margin-bottom: 1em;
}

li::before {
	content: "—";
	display: inline-block;
	width: 1.5em;
	margin-left: -1.5em;
}

.container, .containerbuttons{
	display: flex;
	gap:40px;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding-left:20px;
	padding-right:20px;
	max-width: 1280px;
	width: 100%;
	margin-left:auto;
	margin-right:auto;
}

.containerbuttons{
	margin-top:3em;
}

.content{
	flex:1;
}

.screenshot{
	width:350px;
}

.screenshot img{
	max-width: 100%;
}

.mobile{
	display: none;	
}

@media (max-width: 960px){
	.container{
		flex-direction: column;
	}
}

@media (max-height: 640px){
	.mobile{
		display: flex;	
	}
}

@media (max-width: 560px){
	.containerbuttons{
		flex-direction: column;
	}
	
	.mobile{
		display: flex;	
	}
}