html {
	/* Adjust font size */
	font-size: 10px;
	-webkit-text-size-adjust: 100%;
	/* Font variant */
	font-variant-ligatures: none;
	-webkit-font-variant-ligatures: none;
	/* Smoothing */
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	text-shadow: rgba(255, 255, 255, 0.01) 0 0 1px;
	overflow-x: hidden;
	background-color: #5f6875;
}

* {
	z-index: 1;
}

main {
	padding-top: 50px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: auto;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.overlay {
	width: 100vw;
	height: 100vh;
	background-image: url('/bg-clear.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}

.overlay:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(to bottom right, #000, #000);
	opacity: .5;
}

h1, h2 {
	color: white;
}

h1 {
	font-weight: 500;
	font-size: 5.5rem;
	margin-bottom: 50px;
	text-align: center;
}

h2 {
	font-weight: 300;
	font-size: 3.4rem;
	text-align: center;
}

.buttons {
	width: 30%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}


.sold {
	color: lightgrey;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	font-size: 1.5rem;
	padding-top: 5px;
}

a {
	font-size: 2.2rem;
	font-weight: 600;
	color: white;
	text-decoration: none;
	padding: 15px 25px;
	border-radius: 5px;
	transition: all 0.2s ease;
}

a:hover {
	box-shadow: 3px 7px 30px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}

.buy {
	background-color: #daa62B;
}

.video {
	background-color: #7c7c7c;
}

.notification {
	position: fixed;
	top: 60px;
	right: 50px;
	background-image: url('/apple-update-notification-short.png');
	background-size: contain;
	width: 400px;
	height: 78px;
	border-radius: 6px;
	background-repeat: no-repeat;
	box-shadow: 5px 15px 40px rgba(0, 0, 0, 0.4);
	animation-delay: 1.5s;
}

.screenshots {
	margin-top: 5px;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.screenshots > div {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.screenshots > div > div {
	width: 100%;
	height: 270px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.screenshots span {
	color: white;
	font-size: 1.8rem;
	font-weight: 300;
	margin-top: -50px;
}

.bar-open-mobile {
	visibility: hidden;
}

.bar {
	position: fixed;
	width: 100vw;
	height: 328px;
	top: 0;
	left: 0;
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
	background-image: url('/bar.png');
}

.bar-open {
	position: fixed;
	width: 100vw;
	height: 328px;
	top: 0;
	left: 0;
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
	opacity: 0;
	background-image: url('/bar-open.png');
}

.icons {
	position: fixed;
	top: 40px;
	right: 20px;
	background-image: url('/icons.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 250px;
	height: 100vh;
	z-index: 0;
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.footer {
 background-color: #5f6875;
 width: 100%;
 text-align: center;
 height: 28px;
 padding-top: 10px;
 position: fixed;
 bottom: 0;
 color: white;
 font-size: 1.3rem;
 display: flex;
 justify-content: center;
 align-items: center;
 padding-bottom: 6px;
}

.footer a {
	margin-left: -15px;
	margin-right: -15px;
  font-size: 1.5rem;
  font-weight: 400;
}

.footer a:hover {
 box-shadow: none;
 color:yellow;
}

@media only screen and (max-width: 600px) {
	main {
		padding-top: 70px;
	}


	.notification {
		top: 5px;
		right: 0px;
		width: 300px;
		height: 65px;
		border-radius: 2px;
		background-repeat: no-repeat;
		 box-shadow: none;
	}

	.buttons {
		width: 30%;
	}

	.bar, .bar-open, .icons {
		display: none !important;	
	}

	.overlay {
		background-position: center;
		height: 260vw;
		overflow: hidden;
	}

	a {
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 15px;
		padding-bottom: 20px;
		font-size: 1.8rem;
	}

	h1 {
		font-size: 5.4rem;
	}

	h2 {
		font-size: 2.8rem;
	}

	.screenshots {
		margin-top: 0px;
		flex-direction: column;
		justify-content: flex-start;
	}

	.screenshots > div {
		display: block;
		text-align: center;
		width: 100%;
		position: relative;
	}
	.screenshots > div > div{
		height: 250px;
	}

	.screenshots span {
		position: absolute;
		bottom: 20px;
		width: 100%;
		left: 0;
		font-weight: 400;
	}
.footer {
	position: static;
	 height: 70px;
	 line-height: 20px;
}

.footer-hide {
	display: none;
}

}




@media only screen and (max-width: 320px) {
	.buttons {
		width: 85%;
	}

	a {
		font-size: 1.6rem;
	}
}