<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* HEADER STYLE OVERRIDES */
body.index .site_header {
	background-color: rgba(51, 51, 51, 0.5);
	transition: background-color .2s;
}

body.index.scrolled .site_header {
	background-color: rgba(51, 51, 51, 1);
}

body.index .site_header.hovered,
body.index .site_header.mobile_menu_open {
	background-color: rgba(51, 51, 51, 1) !important;
}
/* end header */


#page_wrapper {
	width: 100%;
	position: relative;
	padding-bottom: 1.5em;
}

.phone_only {
	display: none !important;
}

/*	*	*	*
 *	TOP
 *	*	*	*/

#top {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 48em;
	max-height: 100vh;
	padding: 0;
	z-index: 1;
}

#banner_video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/* top box */

#top_box {
	width: 32em;
	background-color: rgba(var(--background-color-rgb), 0.96);
	border-radius: 1em;
	padding: 2.5em;
	margin-top: 3.75em;
	box-shadow: 0 3px 6px rgba(0,0,0,0.5);
	color: var(--text-default);
	z-index: 2;
}

#top_box h1 {
	font-weight: bold;
	padding:0;
	margin:0 auto 1em auto;
}

.blue_button {
	display: inline-block;
	font-weight: 500;
	margin: 1.5em 0 0 0;
	padding: 1em 5em;
	color: var(--text-inverse);
	border-radius: 0.5em;
	cursor: pointer;
	font-size: 1.125em;

	background: #1b99e6; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#1da1f2, #1b99e6); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#1da1f2, #1b99e6); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#1da1f2, #1b99e6); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#1da1f2, #1b99e6); /* Standard syntax */
}

body.night_mode .blue_button {
	color: var(--text-default);
}

.blue_button:hover {

	background: #1069bc; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#1da1f2, #1069bc); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#1da1f2, #1069bc); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#1da1f2, #1069bc); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#1da1f2, #1069bc); /* Standard syntax */
	
}

.call_to_action {
	width: 250px;
	text-align: center;
	padding: 15px 0 !important;
	text-decoration: none;
	margin: 10px 0 0 0 !important;
	font-size: 1.0em !important;
}

/* end top box */

/* END TOP */

/* BOTTOM */

#bottom {
	padding: 1em 0 1em 0;
	background: var(--background-color);
}

.bottom_item {
	width: 50%;
	margin: 0 auto;
	text-align: left;
}

.bottom_item p, .bottom_item:not(.video) ul li {
	font-size: 1em;
}

.bottom_item a:not(.blue_button) {
	color: dodgerblue;
}

.bottom_item a:not(.blue_button):hover {
	color: var(--color-link-hover);
}

/* FREE THINGS */
#free_things_container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	cursor: default;
}

.free_thing {
	width: 23%;
	text-align: center;
	padding: 1em;
	text-decoration: none;
	color: var(--text-default);
	border-radius: 0.75em;
}

.free_thing:hover {
	background: var(--hover-grey);
}

.free_thing img {
	display: block;
	height: 100px;
	margin: 0 auto 15px auto;
	-webkit-transition: all	0.2s ease-in-out;
	transition: all	0.2s ease-in-out;
}

.free_thing:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	-webkit-filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));
	filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));
}

.free_thing_title {
	font-size: 1.0em;
	font-weight: 500;
	margin-bottom: 10px;
	color: var(--text-default);
}

.free_thing_description {
	font-size: 0.95em;
	color: var(--text-lighter);
}

.free_thing:hover .free_thing_description {
	color: var(--text-default);
}

/* END FREE THINGS */

/* GAME */
#index_game_container {
	background-image: url("../graphics/bkg_index_blue_star_bar.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 2;
	position: relative;
	margin: 3em 0 1em 0;
	height: 380px;
}

body.night_mode #index_game_container {
	background-image: url("../graphics/bkg_index_blue_star_bar_dark.jpg");
}

#index_game_content {
	position: relative;
	display: -webkit-box;	
	display: -ms-flexbox;	
	display: flex;	
	-webkit-box-pack: justify;	
	-ms-flex-pack: justify;	
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	height: 100%;

}

#index_game_left {
	width: 60%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

body.night_mode #index_game_left {
	color: var(--text-inverse);
}

#index_game_left h2 {
	margin: 0 0 10px 0;
	padding: 0;
}

#index_game_left p {
	margin: 12px 0;
}

#index_game_left p:last-child {
	margin: 8px 0 0 0;
}

#index_game_right {
	position: relative;
}

#index_game_avatar {
	height: 280px;
	-webkit-transition: all	0.2s ease-in-out;
	transition: all .2s ease-in-out;
	cursor: pointer;
}

#index_game_avatar:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	-webkit-filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));
	filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));
}

.speech_bubble {
	display: none;
	width: 180px;
	position: absolute;
	top: -30px;
	left: -140px;
	cursor: pointer;
}

#index_game_speech_bubble {
	opacity: 0;
	-webkit-animation: fadeInSpeech 0.5s ease-in 0.5s forwards;
	animation: fadeInSpeech 0.5s ease-in 0.5s forwards;
}

#index_game_speech {
	opacity: 0;
	-webkit-animation: fadeInSpeech 0.25s linear 1s forwards;
	animation: fadeInSpeech 0.25s linear 1s forwards;
}

@-webkit-keyframes fadeInSpeech {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes fadeInSpeech {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* END GAME */

/* DEVICE IMAGES */
#index_device_images_container, .index_device_images_container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 2.5em;
	margin-bottom: 3em;
	cursor: default;
}

.device_image_wrapper {
	position: relative;
	overflow: hidden;
	outline: 10px solid white;
}

.device_image_wrapper img {
	max-width: 100%;
}

#device_01_wrapper, #device_03_wrapper, #device_04_wrapper, #device_05_wrapper,
.device_square {
	width: 33.33%;
}

#device_02_wrapper,
.device_landscape {
	width: 66.66%;
}

.device_image_wrapper:hover .caption {
	opacity: 1;
}

.device_image_wrapper:hover img{
	opacity: 1;
	transform: scale(1.15,1.15);
	-webkit-transform:scale(1.15,1.15);
	-moz-transform:scale(1.15,1.15);
	-ms-transform:scale(1.15,1.15);
	-o-transform:scale(1.15,1.15);
}



.device_image_wrapper .caption {
	cursor: default;
	position: absolute;
	left: 0;
	right: 10px;
	bottom: 0;
	overflow: hidden;
	height: 100%;
	opacity: 0;
	-webkit-transition:all 0.45s ease-in-out;
	-moz-transition:all 0.45s ease-in-out;
	-o-transition:all 0.45s ease-in-out;
	-ms-transition:all 0.45s ease-in-out;
	transition:all 0.45s ease-in-out;
}

#device_02_wrapper .caption, #device_05_wrapper .caption, #device_07_wrapper .caption {
	right: 0;
}

#device_03_wrapper .caption, #device_04_wrapper .caption, #device_05_wrapper .caption {
	bottom: 0;
}

.device_image_wrapper img {
	margin: 0px;
	padding: 0px;
	z-index: 4;
	float: left;
}

.device_image_wrapper img {
	-webkit-transition:all 0.25s ease-in-out;
	-moz-transition:all 0.25s ease-in-out;
	-o-transition:all 0.25s ease-in-out;
	-ms-transition:all 0.25s ease-in-out;
	transition:all 0.25s ease-in-out;
}

.device_image_wrapper .blur {
	background-color: rgba(0,0,0,0.8);
	height: 100%;
	width: 100%;
	z-index: 5;
	position: absolute;
}

.device_image_wrapper .caption_text {
	font-family: 'Merriweather', serif;
	font-style: italic;
	z-index: 10;
	color: var(--text-inverse);
	position: absolute;
	top: calc(50% + 6px);
	left: 50%;
	transform: translate(-50%, -50%);
	width: 75%;
	text-align: center;
	font-size: 0.95em;
	-webkit-user-select: none;
	user-select: none;
}


/* END DEVICE IMAGES */

/* VIDEO */
#video_container {
	width: 100%;
	position: relative;
}

#video_container #question_video {
	width: 100%;
	background: transparent;
}

/* END VIDEO */

/* END BOTTOM */

/* OTHER SITES */
#other_sites_container {

	width: 100%;
	margin: 1.5em auto 4em auto;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.other_site_item {
	text-decoration: none;
	width: calc(25% - 2em);
	text-align: center;
	-webkit-transition: all	0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	color: var(--text-default);
	
}

.other_site_image {
	width: 100%;
	margin-bottom: 1em;
	border-radius: 0.5em;
	-webkit-transition: all	0.2s ease-in-out;
	transition: all .2s ease-in-out;
    
}

.other_site_title {
	font-size: 1.0em;
	color: var(--text-lighter);
}

.other_site_item:hover .other_site_title {
	color: var(--text-default);
	font-weight: 500;
}

.other_site_item:hover .other_site_image {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* END OTHER SITES */


/********************

	MEDIA QUERIES

*********************/
@media only screen and (max-width : 1600px) {

	#top {
		height: 40em;
	}

	#top_box {
		width: 30em;
	}

	.bottom_item {
		width: 55%;
	}

	#index_game_avatar {
		height: 280px;
	}

	.speech_bubble {
		width: 180px;
		top: -40px;
		left: -140px;
	}


}

@media only screen and (max-width : 1500px) {

	#top {
		height: 35em;
	}

	.bottom_item {
		width: 60%;
	}

	#index_game_avatar {
		height: 280px;
	}

	.speech_bubble {
		width: 180px;
		top: -45px;
		left: -130px;
	}


}

 /* Large Devices, Wide Screens */
@media only screen and (max-width : 1350px) {

	.bottom_item {
		width: 70%;
	}

	#index_game_avatar {
		height: 280px;
	}

	.speech_bubble {
		width: 180px;
		top: -35px;
		left: -135px;
	}

}


 /* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	#top {
		height: 28em;
	}

	.bottom_item {
		width: 75%;
	}

	#index_game_avatar {
		height: 260px;
	}

	.speech_bubble {
		width: 180px;
		top: -50px;
		left: -135px;
	}

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 1080px) {

	.bottom_item {
		width: 80%;
	}

	#index_game_avatar {
		height: 240px;
	}

	.speech_bubble {
		width: 170px;
		top: -50px;
		left: -125px;
	}

	.other_site_item {
		width: calc(25% - 1.5em);
	}

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

	#top_box {
		padding: 2em;
		width: 26em;
	}

	.bottom_item {
		width: 90%;
	}

	#index_game_container {
		margin: 2em 0 0 0;
	}

	#index_game_avatar {
		height: 220px;
	}

	.speech_bubble {
		width: 160px;
		top: -65px;
		left: -120px;
	}

}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
	#top {
		height: 50vh;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

	#top_box {
		width: 25em;
	}

	#top_box h1 {
		font-size: 1.8em;
	}

	.blue_button {
		margin: 20px 0 0 0;
	}

	.bottom_item {
		width: 95%;
	}

	#index_game_left {
		width: 90%;
	}

	#index_game_right {
		width: 100%;
		text-align: right;
		position: absolute;
		right: 0;
		top: 10px;
	}

	#index_game_avatar {
		height: 130px;
	}

	.speech_bubble {
		width: 110px;
		top: -15px;
		left: auto;
		right: 110px;
	}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 620px) {

	.free_thing {
		width: 48%;
	}

	#index_game_right {
		top: 5px;
	}

	#index_game_avatar {
		height: 100px;
	}

	.speech_bubble {
		width: 100px;
		top: -25px;
		left: auto;
		right: 85px;
	}

}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {

	.phone_only {
		display: block !important;
	}

	.non_phone_only {
		display: none;
	}

	#top {
		height: 60vh;
	}

	#top_box {
		width: calc(100% - 6em);
		padding: 2em 1.75em;
	}

	#top_box h1 {
		font-size: 1.5em;
		margin: 0 0 0.75em 0;
	}

	#btn_start_free_quiz {
		padding: 15px 0 !important;
		width: 90% !important;
		margin: 1.0em 0 0 0 !important;
	}

	.bottom_item {
		width: 95%;
	}

	#index_game_container {
		height: 400px;
	}

	#index_game_left {
		width: 100%;
	}

	#index_game_right {
		top: 5px;
	}

	.speech_bubble {
		width: 90px;
		top: -20px;
		left: auto;
		right: 75px;
	}

	#index_game_avatar {
		height: 90px;
	}

	.index_device_images_container.phone_only.reduce_margin_top {
		margin-top: 1.5em;
	}

	#device_01_wrapper, #device_03_wrapper, #device_04_wrapper, #device_05_wrapper,
	.device_square {
		width: 50%;
	}

	#device_02_wrapper,
	.device_landscape {
		width: 100%;
		top: 10px;
		order: 1;
	}

	#device_04_wrapper .caption, #device_05_wrapper .caption, #device_02_wrapper .caption {
		bottom: 0;
	}

	#device_03_wrapper .caption {
		right: 0;
	}

	#other_sites_container {
		gap: 2em;
		margin: 1em auto 2em auto;
	}

	.other_site_item {
		width: calc(50% - 1em);
	}

	.other_site_image {
		margin-bottom: 0.5em;
	}

}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 380px) {

	#top_box {
		width: calc(100% - 3em);
		padding: 1.5em;
	}

	#index_game_avatar {
		height: 80px;
	}

	.speech_bubble {
		width: 80px;
		top: -25px;
		left: auto;
		right: 70px;
	}

}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {

	#top_box h1 {
		font-size: 1.5em;
		margin: 0 auto 1em auto;
	}

}

/********************

	END MEDIA QUERIES

*********************/</pre></body></html>