@charset "UTF-8";

:root {
/* Delta Colors */
	--mj-purple: #6673FD;
	--mj-purple-rgb: 102,115,253;
	
	--mj-light-purple: #C9BAFC;
	--mj-light-purple-rgb: 201,186,252;
	
	--mj-dark-purple: #2C2E65;
	--mj-dark-purple-rgb: 44,46,101;
	
	--mj-orange: #FAAA8D;
	--mj-orange-rgb: 250,170,141;
	
	
	/* Chota overrides */
	--color-primary: var(--mj-purple);
}

@font-face {
	font-family: 'Poppins-ExtraLight';
	src: url('../font/poppins/Poppins-ExtraLight.ttf') format('truetype');
	font-weight: 200;
	font-style: normal
}

@font-face {
	font-family: 'Poppins-Light';
	src: url('../font/poppins/Poppins-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal
}

@font-face {
	font-family: 'Poppins-Regular';
	src: url('../font/poppins/Poppins-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: 'Poppins-SemiBold';
	src: url('../font/poppins/Poppins-SemiBold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal
}

@font-face {
	font-family: 'Hanno-Regular';
	src: url('../font/hanno/Hanno-Regular.woff') format('woff'),
		url('../font/hanno/Hanno-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal
}

html {
	box-sizing: border-box;
	width: 100%;
	min-height: 100%;
	padding: 0;
	color: var(--mj-dark-purple);
	font-family: 'Poppins-Regular';
}

*, *:before, *:after {
	box-sizing: inherit;
	outline: none;
}

body {
	width: 100%;
	padding: 0;
	overflow: auto;
	background: #ffffff;
	font-family: 'Poppins-Regular';
}

#page-content {
	max-width: 600px;
	height: 100%;
	padding: 2em;
	margin: 0 auto;
	background-color: transparent;
	font-family: 'Poppins-Regular';
}

header {
	width: 100%;
	height: 80px;
	background-color: var(--mj-light-purple);
	background-image: url('../images/logo_harmony.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-origin: content-box;
	background-size: contain;
	padding: 16px;
}

h1 {
	margin: 0;
	font-family: 'Hanno-Regular';
	font-size: 1.5em;
}

p {
	line-height: 1.3;
	margin-bottom: 0;
}

img.mirror-output {
	width: 60%;
	border-radius: 2%;
}


.button {
	padding: .8em 1em;
	float: none;
	background-color: var(--mj-purple);
	border: 2px solid var(--mj-purple);
	border-radius: 1000px;
	color: #fff;
	text-align: left;
	font-family: 'Poppins-Regular';
	position: relative;
	white-space: nowrap;
	background-position: right 1em center;
	background-repeat: no-repeat;
}

.icon {
	width: 40px;
	vertical-align: middle;
	margin-right: 20px;
}

.shareaholic-canvas {
	margin-top: .5em;
}

.shareaholic-share-button-all {
	display: none !important;
}

.footer p {
	font-size: 80%;
	color: var(--mj-dark-purple);
	text-align: center;
}

@media only screen and (max-width: 600px) {
	p {
		text-align: center;
	}
	
	img.mirror-output {
		width: 90%;
	}
}

@media only screen and (min-width: 600px) {
		
}