html, body, h1, p {
	margin: 0;
	padding: 0;
}

body {
	background: #000000;
	font-family: "Inter", sans-serif, "Helvetica Neue";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.background {
	width: 1260px;
	height: 640px;
	background: url(images/scrl-website-background.png) no-repeat right center;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}

h1 {
	font-size: 60px;
	font-weight: 500;
	line-height: 60px;
	margin: 0 0 30px 0;
	letter-spacing: -0.0em;
}

p {
	font-size: 24px;
	color: #999999;
	line-height: 32px;
	letter-spacing: -0px;
	margin: 0 0 60px 0;
}

.container {
	width: 960px;
	height: 640px;
	/*background: url(images/iphone.png) no-repeat right center;*/
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}

.content {
	width: 420px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #ffffff;
}

.logo {
	width: 150px;
	height: 40px;
	background: url(images/scrl.svg) no-repeat center center;
	background-size: contain;
	margin: 0 0 60px 0;
}

.button {
	display: inline-block;
	width: 180px;
	height: 60px;
	background: url(images/app-store.svg) no-repeat center center;
	background-size: contain;
}

.play {
	display: inline-block;
	width: 202px;
	height: 60px;
	background: url(images/google-play.svg) no-repeat center center;
	background-size: contain;
	margin: 0 0 0 20px;
}

.background-mobile {
	margin: auto;
	margin-top: 30px;
	margin-bottom: 50px;
	max-width: 400px;
	height: 355px;
	background: url(images/scrl-website-background.png) no-repeat center center;
	background-size: contain;
	display: none;
}

@media screen and (max-width: 1260px) {
	.background {
		background: none;
		width: 100%;
		min-height: 100%;
	}

	.background-mobile {
		display: block;
	}
	
	.container {
		position: static;
		top: 0%;
		left: 0%;
		transform: none;
		text-align: center;
		margin: auto;
		margin-top: 0px;
		width: 320px;
		height: 0px;
	}

	.content {
		width: 420px;
		position: static;
		top: 0px;
		color: #ffffff;
		transform: scale(0.76) translateY(-12%);
		transform-origin: 0%;
		padding-bottom: 60px;
		margin-top: 10px;
	}	

	h1 {
		font-size: 40px;
		font-weight: 500;
		line-height: 40px;
	}

	.logo {
		margin: auto;
		margin-bottom: 60px;
		margin-top: 0px;
	}
}