<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * 8 pairs 16 fields
 */

html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	background: #ffffff;
	font-family: Tahoma, Arial, sans-serif;
	font-size: 18px;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

h1 { font-family: 'Arial'; }


.deck {
	width: 500px;
	background: #d0dfec;
	padding: 0.5rem;
	border-radius: 4px;

	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	margin: 0 0 3em;
	
	text-align: center;
	perspective: 800px;
	list-style-type: none;
}

.deck .card {
	height: 125px;
	width: 125px;
	margin: 0.2rem;
	/*background: #02b3e4;*/
	color: #ffffff;
	border-radius: 5px;
	cursor: pointer;
	box-shadow: 5px 2px 20px 0 rgba(46, 61, 73, 0.5);

	transform-style: preserve-3d;
	-webkit-transition: transform 0.75s;
	transition: transform 0.75s;
	position: relative;
}


.deck .card.open {
		-ms-transform: rotateY(-180deg); /* IE 9 */
   	-webkit-transform: rotateY(-180deg); /* Safari */
    transform: rotateY(-180deg);
	
	cursor: default;
}


.deck .card.show {
	font-size: 1.7rem;
}

.deck .card.match {
	cursor: default;
	/*background: rgb(100, 200, 150);*/
	font-size: 1.7rem;
	animation-name: rubberBand;
	animation-duration: .75s;
}


.deck .card.unmatched {
	animation-name: pulse;
	animation-duration: .75s;
}

.deck .card.disabled {
	pointer-events: none;
}

/* front side of the card */
.front{
	position: absolute;
	height:100%;
	width:100%;

	-ms-transform: rotateY(0deg); /* IE 9 */
   	-webkit-transform: rotateY(0deg); /* Safari */
	transform: rotateY(0deg);

	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	
	background-color: #585758;
	background-size: cover;
}

/* back side of the card */
.back{
	position: absolute;
	height:100%;
	width:100%;

	-ms-transform: rotateY(-180deg); /* IE 9 */
   	-webkit-transform: rotateY(-180deg); /* Safari */
    transform: rotateY(-180deg);
	
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	
	display: flex;
	justify-content: center;
	align-items: center;
}


/* Styles for the Score Panel */


.score-panel {
	margin-top: -30px;
	text-align: left;
	margin-bottom: 10px;
}

.score-panel .stars {
	margin: 0;
	padding: 0;
	display: inline-block;
	margin: 0 5px 0 0;
}

.score-panel .stars li {
	list-style: none;
	display: inline-block;
}

.score-panel .restart {
	margin-top: -5%;
	width: 20%;
	height: 20%;
	float: right;
	cursor: pointer;
}


.score-panel .restart img{
	width: 100%;
	height: 100%;

}

.fa-star { color: #FFD700; }

.timer { display: inline-block; }


/*
 * Styles for congratulations modal
 */


.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	visibility: hidden;
	opacity: 0;
}

.overlay:target {
	visibility: visible;
	opacity: 1;
}
  
.popup {
	margin: 90px auto;
	border-radius: 5px;
	width: 150px;
	font-size: 1rem;
	position: relative;
	transition: all 5s ease-in-out;
}
  
.popup h2 {
	margin-top: 0;
	color: #333;
}

.popup .close {
	position: absolute;
	top: 20px;
	right: 30px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}

.popup .close:hover {
	color: #E5F720;
}

.popup .content-1,
.content-2 {
	max-height: 30%;
	overflow: auto;
	text-align: center;
}


.playAgain {
  border-style: solid;
  border-width: 4px;
  border-radius: 15px;
  border-color: rgb(100, 200, 150);  
  background-color: rgba(255, 255, 255, 1);
  padding: 15px 0px 15px 0px;
  	text-align: center;
	color: rgb(100, 200, 150);
	font-size: 2rem;
	font-weight: bold;
  cursor: pointer;
  padding-left: 4px;
  padding-right: 4px;
}

.indikator{
position: absolute;	
display: none;
top: 0%;
left: 0%;
border-style: solid;
border-color: black;
border-radius: 25%;
border-width: 4px;
background-color: white;
color: black;	
font-weight: bold;	
}

.moves{
	color: red;
}

#starRating li {
	display: inline-block;
}

#play-again {
	background-color: #141214;
	padding: 0.7rem 1rem;
	font-size: 1.1rem;
	display: block;
	margin: 0 auto;
	width: 100%;
	font-family: 'Gloria Hallelujah', cursive;
	color: #ffffff;
	border-radius: 5px;
}



/* animations */
@keyframes rubberBand {
	from { transform: scale3d(-1, 1, -1); }

	30% { transform: scale3d(-1.25, 0.75, -1); }

	40% { transform: scale3d(-0.75, 1.25, -1); }

	50% { transform: scale3d(-1.15, 0.85, -1); }

	65% { transform: scale3d(-0.95, 1.05, -1); }

	75% { transform: scale3d(-1.05, 0.95, -1); }

	to { transform: scale3d(-1, 1, -1); }
}

@keyframes pulse {
	from { transform: scale3d(-1, 1, -1); }

	50% { transform: scale3d(-1.2, 1.2, -1.2); }

	to { transform: scale3d(-1, 1, -1); }
}


.picture{
	width: 100%;
	height: 100%;
}






/****** Media queries
***************************/

/* Small devices (portrait tablets and large phones, 100px and up) */
@media only screen and (min-width: 100px) {

	.deck {
		width: 370px;
	}

	.deck .card {
		height: 80px;
		width: 80px;
	}

	.deck .card.open {
	font-size: 0.7rem;
	}
	
	.deck .card.match {
	font-size: 0.7rem;
	}

    .score-panel {
	font-size: 0.8rem;
	}		
	
	.score-panel .restart {
	margin-top: -5%;
	width: 15%;
	height: 15%;
    }
 }
 
/* Small devices (portrait tablets and large phones, 500px and up) */
@media only screen and (min-width: 500px) {

	.deck {
		width: 500px;
	}

	.deck .card {
		height: 100px;
		width: 100px;
	}
	
	.deck .card.open {
	font-size: 1rem;
	}
	
	.deck .card.match {
	font-size: 1rem;
	}

    .score-panel {
	font-size: 1rem;
	}	
	
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

	.container {
		font-size: 22px;
	}

	.deck {
		width: 600px;

	}

	.deck .card {
		height: 125px;
		width: 125px;
	}

	.popup {
		width: 80%;
	}
	
		.deck .card.open {
	font-size: 1.1rem;
	}
	
	.deck .card.match {
	font-size: 1.1rem;
	}
	
		.score-panel .restart {
	margin-top: -5%;
	width: 18%;
	height: 18%;
    }

    .score-panel {
	font-size: 1.4rem;
	}	

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {


	
}
</pre></body></html>