body {
	margin:0;
}

#viewer {
	padding-top:60px;
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	overflow: scroll;
	background-color: #999;
	-ms-overflow-style: none
	scrollbar-width:  none;
}

::-webkit-scrollbar {
  display: none;
  width: 0px;
  background: transparent; /* make scrollbar transparent */
}

#logo {
	display:none;
}
#icon {
	display:block;
}

header {
	height:30px;
	font-size: 16px;
	padding: 15px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100000;
	width: calc(100% - 30px);
	background-color:rgba(21,21,21,0.95);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

form {
	margin-block-end:0!important;
}

header h1 {
	display: none;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	padding-top:5px;
	z-index: -1000;
	height: 30px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color:#FFF;
	text-overflow: ellipsis;
}

#form button, #form input[type=submit], #form input[type=button], a.button {
	border-radius: 0.5em;
	padding: 0.5em 1em;
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-size: 13px;
	background-color: transparent;
	border: 2px solid #00c8b5;
	color:#00c8b5;
}

#interstitial {
	display: none;
	background-color: rgba(0,0,0,0.8);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000;
}

#window {
	position: absolute;
	background-color: #181818;
	border-radius: 20px;
	top:50%;
	left: 50%;
	translate: -50% -50%;
	width: 650px;
	height: 420px;
	filter: drop-shadow(rgba(0,0,0,0.5) 0 0 1rem);
	overflow: scroll;
	-ms-overflow-style: none;  /* Internet Explorer 10+ */
	scrollbar-width: none;  /* Firefox */
}

#window::-webkit-scrollbar { 
	display: none;  /* Safari and Chrome */
}

#close {
	position: absolute;
	color: #666;
	font-size: 20px;
	position: absolute;
	top:15px;
	right:15px;
}

#hero {
	position: relative;
	display: inline-block;
	float:left;
	margin:20px;
	height: 90%;
	aspect-ratio:275/375;
}

#mask {
	height:100%;
}

#content {
	position:absolute;
	display: inline-block;
	margin: 20px;
	margin-left: 0;
	color:#CCC;
	font-size: 11pt;
}

#content h1 {
	font-size: 21pt;
	color: #00c6b3;
}

#content ul {
	list-style: none;
	padding: 0.5em;
}

#content ul li {
	font-size: 11pt;
	margin: 0.5em;
}

#content ul li::before {
	content: "✓ "; color:#00c6b3;
}

#mask {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:100%;
	max-height: 375px;
	z-index: 1000000;
	background-image: url('mask.png');
	background-size:cover;
}

#screenshot, #fallback {
	position: absolute;
	top:4%;
	left:6%;
	height:92%;
	width: 92%;
	z-index:100;
}

#open {
	display:none;
}

#app {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1000;
}

button {
	border-radius: 100px;
	padding: 6px 32px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 12pt;
	background-color: transparent;
	border: 3px solid #00c8b5;
	color:#00c8b5;
}

button:hover {
	color:#181818;
	background-color: #00c8b5;
}

@media print {
	header {
		display: none;
	}
}

@media screen and (min-width: 350px) {
	#open {
		display:inline-block;
	}
}

@media screen and (min-width: 600px) {
	#logo {
		display:block;
	}
	#icon {
		display:none;
	}
	header h1 {
		display: block;
	}
}