body {
	text-align: center;
}

.hidden {
	display: none;
}

#menu {
	width: 90%;
	background: rebeccapurple;
	color: white;
	font-size: 20px;
	padding: 5%;
}

#menu a {
	color: white;
	text-decoration: none;
}

#menu a:visited {
	color: white;
	text-decoration: none;
}



#progres {
	height: 10px;
	width: 100%;
	background-color: #98ccff;
}

#completed {
	height: 10px;
	background-color: #0f4bac;
	width: 0;
}

#scene {
	width: 90%;
	height: 50px;
	margin: 10px 5%;
	perspective: 600px;
}

.card {
	width: 100%;
	height: 100%;
	position: relative;
	transition: transform 0.5s;
	transform-style: preserve-3d;
	line-height: 50px;
}

.card__face {
	position: absolute;
	height: 100%;
	width: 100%;
	backface-visibility: hidden;
	border-radius: 10px;
	background: #CBE4FF;
	border: 2px solid #79d3ff;
}

.card__face--front {

}

.card__face--front::after {
	content: "La";
	position: absolute;
	left: 5px;
}

.card__face--back {

	transform: rotateY(180deg);
}

.card__face--back::after {
	content: "Cz";
	position: absolute;
	left: 5px;
}

.card.is-flipped {
	transform: rotateY(180deg);
}
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
	font-family: verdana, sans-serif;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*# sourceMappingURL=main.css.map*/