@import url('https://fonts.googleapis.com/css?family=Teko:500');
@import url('./base.css');
@import url('./intro.css');
@import url('./diff.css');
@import url('./lost-screen.css');
@import url('./in-game.css');
@import url('./score-list.css');
@import url('./ui.css');
@import url('./public-leaderboard.css');

.menu h1,
.lost-screen h1 {
	font-size: 6rem;
    line-height: 5rem;
	text-align: center;
	text-shadow: 1px 1px 1px rgb(42, 70, 115);
	color: #b8d3ff;
	margin: 50px 0 40px 0;
}
.lost-screen h1 {
	color: #ebbab4;
}
.container.show {
	display: none;
}
.container {
	/*margin: 0 auto;*/
	width: 100%;
	height: 75%;
	font-size: 5em;
}
.container::after {
	display: block;
	content: "";
	clear: both;
}


/*.bigBox div, 
.smallBox div {
	position: absolute;
	top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}*/

.message {
	font-size: 1em;
	position: absolute;
	bottom: 0;
}
.combo {
	font-size: 7em;
	line-height: 0em;
	position: absolute;
	left: 0;
	right: 0;
	top: 23px;
	text-align: center;
	text-shadow: 1px 1px 3px #000;
	color: #fff;
}
.the-timer .the-meter {
	margin: 0 auto 0 auto;
	text-align: center;	
	background-color: #c2def1;
	height: 30px;
    border-radius: 10px;
}
.the-timer {
	position: relative;
	margin: 30px 0 50px 0;
    background: #e1f3ff;
    border-radius: 10px;
    box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
}
.score {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}

.the-timer.animating .the-meter {
	animation: theMeter 3s forwards;
}

@keyframes theMeter {
	100% {
		background-color: #ff4247;
	}
}

.the-timer.animating {
	animation: theTimer 2s forwards;
}

@keyframes theTimer {
	0%, 40%, 65%, 80%, 86%, 90%, 94%, 98%{
		transform: rotate(0.5deg);
	}
	30%, 50%, 70%, 83%, 88%, 92%, 96%, 100% {
		transform: rotate(-0.5deg);
	}
}

.combo.animating {
	animation: combo 0.2s ease-in-out;
}

@keyframes combo {
	70% {
		font-size: 10em;
		margin-top: 5px;
	}
}
