
* {
	box-sizing: border-box;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

html {
	font-size: 14pt;
	font-size: 3vmin;
	box-sizing: border-box;
}
body {
	width:100vw;
	height: 100vh;
	background-image: url("../img/bgr.jpg");
	background-size:cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

h2, h4 {
	text-align: left;
}

h1 {
	font-size: 3rem;
	line-height: 3rem;
	margin:0;
	color:rgba(255,255,255,0.7);
}

h3 {
	font-size:2rem;
	line-height: 2rem;
}


.mainImg {
	position:fixed;
	bottom:0vh;
	left:0;
	width: 100vw;
	height:67vh;
	background-image: url("../img/AdobeStock_375974425.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 0 bottom;
}

.storeLinks {
	position:fixed;
	bottom:0vh;
	right:0;
	width: 50vw;
	height:calc(10rem + env(safe-area-inset-bottom,0));
	padding-right: 4vh;

	padding-bottom: env(safe-area-inset-bottom,0);
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	flex-direction: row;
	justify-content:flex-end;
	align-items: center;
}

.storeLinks img {
	height:4rem;
	max-height: 2rem;
	min-height: 2rem;
	width: 7rem;
	margin:0.3rem;
	object-fit:fill;
}

.header {
	position:fixed;
	top:0;
	right:0;
	width: 100vw;
	height:33vh;
	padding-top: calc(1.5rem + env(safe-area-inset-top,0));
	display: flex;
	align-content: center;
	flex-direction: column;
	justify-content:center;
	align-items: center;
}

.header img {
	height:4rem;
	max-height: 4rem;
	min-height: 4rem;
	width: 4rem;
	margin:0.3rem;
	object-fit:fill;
}
.header p {
	font-size: 1.1rem;
	line-height: 1.4rem;
	text-align: center;
	padding: 0 1.5rem;
	margin:0.5rem 0;
	color:rgba(255,255,255,1);
}

.header .link {
	text-decoration: underline;
	color:rgba(255,255,255,0.67);
}


.mainInfo, .initInfo {
	position:fixed;
	top:0;
	left:0;
	width: 100vw;
	height: 100vh;
	
	
	padding-left:12%;
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
	color:#FFF;
}

.footer {
	position:fixed;
	bottom:0vh;
	left:0;
	width: 100vw;
	height:calc(10rem + env(safe-area-inset-bottom,0));
	font-size: 0;
	line-height: 0;
	background-color: rgba(255,255,255,0.7);
	
}





@media screen and (orientation : portrait){
	
	.storeLinks {
		width: 50vw;
		height:calc(10rem + env(safe-area-inset-bottom,0));
	}
	
	.mainImg {
		width: 100vw;
		height:65vh;
	}
	
	.footer {
		height:calc(10rem + env(safe-area-inset-bottom,0));
	}
}

	
	
	
	
	
	




@media screen and (orientation : landscape)  {
	
	.storeLinks {
		width: 90vw;
		height:calc(6rem + env(safe-area-inset-bottom,0));
	}
	
	.mainImg {
		width: 50vw;
		height:100vh;
	}
	
	.footer {
		height:calc(6rem + env(safe-area-inset-bottom,0));
	}

	.header {
		width: 60vw;
		height: calc(100vh - 6rem - env(safe-area-inset-bottom,0));
		padding-top: calc( 2vh + env(safe-area-inset-top,0) );
		align-content: center;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	

}




