body {
	background-color: #242a31;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #727a87;
	text-align: center;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}



.fab {
	font-weight: 400;
}

.col {
	padding: 0;
}



header {
	display: flex;
	justify-content: space-between;
	padding-top: 0.5rem;
}

header .col {
	display: flex;
	align-items: center;
}

header .col > * {
	display: block;
	width: 100%;
}

header .logo {
	outline: none;
}

header .logo img {
	height: 3rem;
}

header h1 {
	text-transform: uppercase;
	font-size: 2rem;
	margin: 0;
}

@media (max-width: 480px) {
	header h1 {
		font-size: 1.5rem;
	}
}

header .dev {
	font-size: 2rem;
	line-height: 1;
	color: #aaa;
}



main {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.app {
	width: 390px;
	margin: 10px auto;
}

.app .app-title {
	font-size: 1.15rem;
}

.app .app-title .fa {
	vertical-align: text-top;
}

.app .app-container {
	height: 844px;
	position: relative;
	background-color: #fff;
	transform: scale(0.85);
	transform-origin: center top;
}

.app .app-container iframe,
.app .app-container .icon,
.app .app-container .splash {
	transition: all 0.5s;
}

.app .app-container iframe {
	position: relative;
	z-index: 2;
	display: block;
	border: 0;
	width: 100%;
	height: 100%;
}

.app .app-container .statusbar,
.app .app-container .bottombar {
	position: absolute;
	z-index: 10;
	left: 0;
	width: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
	pointer-events: none;
}

.app .app-container .bottombar {
	bottom: 0;
}

.app .app-container .statusbar {
	top: 0;
}

.app.ios .app-container {
	border-radius: 39px;
	overflow: hidden;
}

.app.ios .app-container .statusbar {
	background-image: url('statusbar-ios.png');
	height: 54px;
}

.app.ios .app-container .bottombar {
	background-image: url('bottombar-ios.png');
	height: 34px;
}

.app.ios .app-container iframe {
	top: 54px;
	height: calc(100% - 54px - 34px + 2px);
}

.app.android .app-container .statusbar {
	background-image: url('statusbar-android.png');
	height: 20px;
}

.app.android .app-container iframe {
	top: 20px;
	height: calc(100% - 20px);
}

.app .app-container .icon,
.app .app-container .splash {
	opacity: 0;
	position: absolute;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #fff;
	pointer-events: none;
}

.app .app-container .icon {
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background-size: contain;
	border-radius: 20px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.app .app-container .splash {
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
}
