html {
	font-family: 'Nunito', sans-serif;
	color: white;
	-webkit-appearance:none;  
}
body {
	background-color: black;
	margin: 0;
	padding: 0;
}

video {
	width: 100%;
	height: auto;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	padding-top: 0px;
	text-align: center;
}

h1 {
	color: white;
	font-size: 96px;
	font-weight: 500;
	margin-top: 10px;
	margin-bottom: 0;
	text-shadow: 0 0 12px #00ffac,
	0 0 6px #00ffac;
}

h2 {
	color: white;
	font-size: 24px;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 20px;
}

.logo {
	font-style: italic;
}

p {
	color: white;
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.app-icon {
	width: 150px;
	height: 150px;
	margin-top: 40px;
	border-radius: 50%;
	background-color: #fff;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-icon img {
	max-width: 80%;
	max-height: 80%;
}

.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.demo-video {
	max-width: 350px;
	height: auto;
}

.side {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.top-side {
	margin-bottom: 40px;
}

.form-group {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	color: #555555;
}

.form-group input {
	font-family: 'Nunito', sans-serif;
	padding: 10px;
	font-size: 16px;
	border-radius: 5px;
	border: 1px solid #dddddd;
}

.form-group input[type="submit"] {
	font-weight: 600;
	font-size: 20px;
	width: 200px;
	background-color: black;
	color: #ffffff;
	cursor: pointer;
	border-color: #00ffac;
}

.form-group input[type="submit"]:hover {
	background-color: #333333;
}

.points {
	text-align: left;
	font-size: 26px;
	/* left padding for the numbers */
	padding: 20px;
}

.emoji {
	font-size: 28px;
	/* add spacing between emoji and text */
	margin-right: 10px;
}

.mobileShow_desktopHide {
	display: block;
}

.desktopShow_mobileHide {
	display: none;
}

/* -------------------------------- RESPONSIVE STYLING ---------------------------*/

@media (min-width: 780px) {
	.hero {
		flex-direction: row;
	}
	.side {
		margin-left: 20px;
	}
	.mobileShow_desktopHide {
		display: none;
	}
	
	.desktopShow_mobileHide {
		display: block;
	}
}


