@charset "UTF-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	min-height: -webkit-fill-available;
	background-color: #000;
}

html {
	height: -webkit-fill-available;
}

#bgVideoWrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	z-index: -100;
}

#bgVideo {
	height: 100vh;
	pointer-events: none;
}

#linksWrapper {
	height: 100vh;
	z-index: 0!important;
}

#cta, #cta a:link, #cta a:hover, #cta a:visited {
	position: absolute;
	top: calc(50vh - 2em);
	width: 100vw;
	color: #fff;
	text-align: center;
	text-decoration: none;
	line-height: 4em;
	font-size: 4em;
}

#instagram {
	position: absolute;
	top: 75vh;
	left: 50vw;
	transform: translate(-50%, -50%);
}

#instagram img {
	width: 4em;
	opacity: 75%;
}

@media only screen 
    and (width: 428px) 
    and (height: 926px) 
    and (-webkit-device-pixel-ratio: 3) {
		#instagram img {
			font-size: 5em;
		}
		#cta, #cta a:link, #cta a:hover, #cta a:visited {
			top: calc(50vh - 2.5em);
			line-height: 5em;
			font-size: 5em;
		}
}