*{
	font-family: cursive;
}
.container{
	width: 50%;
	margin: 0 auto;
}
.desc{
	border-radius: 15px 15px 0 0;
	background-color:#F39189;
	color: #94DAFF;
	padding: 5px;
}
.desc p{
	margin: 0;
}
.text{
	padding: 15px;
	margin-top: 0;
	background-color:#94DAFF;
	border-radius: 0 0 15px 15px;
	display: none;
}
.fullBord{
	border-radius: 15px;
	background-color:#F39189;
	color: #94DAFF;
	padding: 5px;
}
.fullBord p{
	margin: 0;
}
.taskProgress{
	position: fixed;
	top: 40vh;
	left: 1vw;
	color: #94DAFF;
}
.taskProgress p{
	text-align: center;
	font-size: 25px;
	margin-bottom: 10px;
}
.timeProgress{
	position: fixed;
	top: 1vh;
	left: 1vw;
	color: #94DAFF;
}
.timeProgress p{
	text-align: center;
	font-size: 25px;
	margin-bottom: 10px;
}
canvas{
	width: 20vw;
}
#win{
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;	
}
#win a{
	padding: 1rem 2 rem;
	font-size: 25;
	background-color:#F39189;
	color: #94DAFF;
	border-radius: 12px;
	text-decoration: none;
	margin-top: 2rem;
}
#start{
	width: 250px;
	height: 5vh;
	font-size: 25px;
	color: #94DAFF;
	background-color:#F39189;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	margin-bottom: 50px;
	margin-top: 3%;
}
#start:hover{
	cursor: pointer;
}
.gameBoard{
	width: 100%;
	gap: 5px;
	display: none;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(4, 100px);
}
.card{
	background-color: whitesmoke;
	text-align: center;
	line-height: 100px;
	cursor: pointer;
	transition: all 0.5s;
	transform-style: preserve-3d;
}
.front{
	background-color:#F39189;
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	color: #94DAFF;
	font-weight: bold;
}
.back{
	backface-visibility: hidden;
	transform: rotateY(180deg);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.card img{
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0 auto;
}
.flip{
	transform: rotateY(180deg);
}
@media all and (max-width: 1300px){
	.taskProgress, .timeProgress{
		width: 200px;
	}
}
@media all and (max-width: 1000px){

}