@import url('https://fonts.googleapis.com/css?family=Potta+One');

.container {
	padding-left: 6em;
	padding-right: 6em;
}

.levels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    margin: 0;
	overflow-y: auto;
}

.levels:after {
	content: "";
	display: block;
	height: 4.5em;
	width: 100%;
}


.level {
	position: relative;
    width: 9.5em;
    height: 8.4375em;
	background-size: contain;
    box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    margin: 5em 1em 0em;
}

.unlocked {
    background-image: url("./unlocked.png");
}

.locked {
    background-image: url("./locked.png");
}

.level:hover {
    box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.2);
}

.level:active {
    transform: scale(0.9);
}

.level-container {
    padding: 0.01em 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	height: 100%;
}

.level-title {
    font-family: 'Potta One';
    font-style: normal;
    font-weight: 400;
    font-size: 4em;
    color: #FFFFFF;
    text-shadow: -0.25em 0em 0.25em #0B4FB2;
}

.level-status {
	width: 10em;
	height: 4.5em;
	position: absolute;
    top: -4.5em;
    left: -0.25em;
}