@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

* {
	box-sizing: border-box;
}

iframe {
	display: none;
}

html {
	font-family: 'Montserrat', sans-serif;
	height: 100%;
	width: 100%;
}

body {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: #000;
	color: #FFF;
	line-height: 1;
	letter-spacing: -1px;
	font-size: 26px;
	/*transition: color .15s, background .15s;*/
	overflow: hidden;
	height: 100%;
}

body.playing {
	background: #F5C369;
	color: #000;
}

body.finished {
	overflow-y: auto;
}

@keyframes flash {
	0% {
		background: #c0392b;
	}
	100% {
		background: #F5C369;
	}
}

body.flash {
	animation: flash .75s ease-out;
}

a {
	color: #FFF;
	text-decoration: none;
}

.playing a {
	color: #000;
}

nav {
	display: flex;
	flex-shrink: 0;
	align-items: flex-end;
	padding: 10px 40px 30px;
	height: 110px;
	position: relative;
}

nav a {
	flex-grow: 1;
}

nav .albumInfo {
	display: inline-block;
	text-align: center;
	opacity: 0;
	transition: opacity .15s;
	position: absolute;
    z-index: 1;
    transform: translateX(-50%);
    left: 50%;
    top: 0;
}

.playing nav .albumInfo {
	opacity: 1;
}

nav .albumInfo strong {
	display: block;
	font-weight: 700;
}

#app {
	flex-grow: 1;
	display: flex;
}

.game {
	flex-grow: 1;
	width: 100%;
}

.game .leaderboard {
	display: none;
}

.finished .game .leaderboard {
	display: block;
}

.finished .game .gameContent {
	display: none;
}

.finished nav {
	display: none;
}

nav .directions {
	position: absolute;
    bottom: 30px;
    transform: translateX(-50%);
    left: 50%;
    text-align: center;
}

nav .continue {
    text-align: right;
	flex-grow: 1;
}

nav .continue a {
	padding-bottom: 2px;
	border-bottom: 3px dashed;
}

.playing nav .directions {
	display: none;
}

nav .preorder {
	flex-grow: 0;
}

nav .preorder a {
    border-bottom: 3px dashed;
    padding-bottom: 2px;
}

.game .album {
	width: 600px;
	height: auto;
	display: block;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	transition: left 1s;
}

.playing .game .album {
	left: -600px !important;
}

.game .character {
	width: 101px;
	height: auto;
	display: block;
	position: absolute;
}

.game .word {
	position: absolute;
	font-size: 16vh;
	white-space: nowrap;
	text-transform: uppercase;
	font-weight: bold;
	z-index: -1;
	letter-spacing: -2px;
	text-transform: uppercase;
	top: 0;
}

.game .object {
	position: absolute;
	height: 15vh;
	width: auto;
	z-index: -1;
	top: 0;
}

.game .word.hit {
	animation: hit .75s ease-out;
}

@keyframes hit {
	0% {
		color: #FFF;
	}
	100% {
		color: #000;
	}
}

.game .subtitle {
	position: absolute;
	font-size: 34vh;
	white-space: nowrap;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	font-weight: bold;
	z-index: -1;
	letter-spacing: -3px;
	text-transform: uppercase;
}

.game .nowPlaying {
	position: absolute;
	z-index: 1;
	right: 40px;
	top: 30px;
	opacity: 0;
	transition: opacity .15s;
} 

.game .controls {
	position: absolute;
    right: 52px;
    top: 60px;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    transition: opacity .15s;
}

.game .controls .play {
	display: none;
}

.game .controls.paused .pause {
	display: none;
}

.game .controls.paused .play {
	display: block;
}

.game .scoreboard {
	position: absolute;
	z-index: 1;
	left: 40px;
	top: 30px;
	text-transform: uppercase;
	opacity: 0;
	transition: opacity .15s;
}

.playing .game .scoreboard,
.playing .game .nowPlaying,
.playing .game .controls {
	opacity: 1;
}

.game .scoreboard > span {
	display: inline-block;
	margin-left: 22px;
	font-weight: bold;
}

.game .scoreboard > span.bulge {
	animation: bulge .5s;
}

@keyframes bulge {
	50% {
		transform: scale(2);
		color: #27ae60;
	}
}

.leaderboard {
	flex-grow: 1;
	text-transform: uppercase;
	text-align: center;
	overflow-x: hidden;
	position: relative;
	width: 100%;
}

.leaderboard .content {
	width: 200%;
	white-space: nowrap;
	transition: transform 0.25s ease-in-out;
}

.leaderboard.leadersShowing .content {
	transform: translateX(-50%);
}

.leaderboard .entry,
.leaderboard .leaders {
	width: 50%;
	display: inline-block;
	vertical-align: top;
	padding: 30px;
	overflow: hidden;
}

.leaderboard .title {
	font-size: 230px;
	font-weight: bold;
}

.leaderboard .leaders .title {
	cursor: pointer;
}

.leaderboard form {
	font-weight: bold;
	font-size: 120px;
	margin-top: 80px;
}

.leaderboard input {
	opacity: 0.3;
	border: none;
    cursor: pointer;
	display: inline-block;
	background: none;
    box-shadow: none;
    outline: none;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    line-height: inherit;
    font-weight: inherit;
    text-align: center;
    display: block;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
}

.leaderboard.focused input {
	opacity: 1;
}

.leaderboard table {
	width: 100%;
	max-width: 1380px;
	margin: auto;
	margin-top: 80px;
	text-transform: none;
}

.leaderboard table thead {
	font-weight: bold;
}

.leaderboard table td {
	padding-bottom: 10px;
}

.leaderboard table .rank,
.leaderboard table .name {
	text-align: left;
}

.leaderboard table .name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: capitalize;
}

.leaderboard table .score {
	text-align: right;
}

@media (max-width: 1500px) {
	.leaderboard .entry,
	.leaderboard .leaders {
		padding: 10px;
	}
	.leaderboard .entry .title {
		font-size: 16vw;
	}

	.leaderboard .leaders .title {
		font-size: 15vw;
	}

	.leaderboard form {
		font-size: 8.5vw;
	}

	.leaderboard table {
		font-size: 18px;
	}
}

@media (max-width: 1000px) {
	body {
		font-size: 22px;
	}

	nav .albumInfo {
		display: none;
	}
}

@media (max-width: 700px), (max-height: 800px) {
	.playing nav {
		display: none;
	}

	.game .album {
		width: 300px;
	}

	.playing .game .album {
		left: -300px !important;
	}

	.game .character {
		width: 54.5px;
	}
}

@media (max-width: 700px) {
	body {
		font-size: 16px;
	}

	nav {
		display: block;
		height: auto;
		padding: 10px;
	}

	nav .continue,
	nav .release,
	nav .preorder {
		display: block !important;
		text-align: center;
		position: static !important;
		left: 0 !important;
		transform: none !important;
		border: none;
		margin-bottom: 5px;
	}

	nav .continue a,
	nav .preorder a {
		padding: 0;
		border-bottom: 1px dashed
	}

	nav .directions {
		margin-bottom: 110px;
	}

	nav .preorder div {
		margin-bottom: 5px;
	}
}

@media (max-width: 450px) {
	body {
		font-size: 14px;
	}

	nav {
		display: block;
		height: auto;
		padding: 10px;
	}

	nav .continue,
	nav .release,
	nav .preorder {
		display: block !important;
		text-align: center;
		position: static !important;
		left: 0 !important;
		transform: none !important;
		border: none;
		margin-bottom: 5px;
	}

	nav .continue a,
	nav .preorder a {
		padding: 0;
		border-bottom: 1px dashed
	}

	nav .directions {
		margin-bottom: 60px;
	}

	nav .preorder div {
		margin-bottom: 5px;
	}
}

@media (max-width: 400px) {
	nav .directions {
		margin-bottom: 50px;
	}
}

@media (max-width: 350px) {
	nav .directions {
		margin-bottom: 45px;
	}
}

























.downloads {
	padding: 30px 40px;
	font-size: 16px;
	overflow: auto !important;
}

.downloads .mainContent {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.downloads .title {
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 80px;
}

.downloads .download {
	width: 30%;
    display: inline-block;
    vertical-align: top;
    margin-right: 4%;
}

.downloads .download:last-child {
	margin-right: 0;
}

.downloads .download .stitle {
	font-size: 24px;
    height: 70px;
}

.downloads .download .format {
	opacity: 0.5;
}

.downloads .download img {
	max-width: 100%;
}

.downloads .download a {
	margin-bottom: 8px;
	display: block;
}

.downloads .mp3 {
	margin: 30px 0;
}