@media all and (max-width:360px);
@charset "UTF-8";
html {
	width: 100%; height: auto;
}
* {
	box-sizing: border-box;
}
body {
	background-color: #925662;
	font-family: tahoma, corbel;
	font-size: 1.2rem;
	font-variant: small-caps;
	color: white;
	}
#puzPage {
	width: 99%; margin: auto;
	padding-top: 5%;
	display: grid;
	grid-template-columns: repeat(3, auto);
	justify-content: center;
	align-items: center;
	grid-gap: 1rem;
	}
#back {
	position: absolute;
	top: 1%;
	left: 1%;
	}
#succes {
	position: absolute;
	left: 65%;
	top: 45%;
	}
#droppables {
	display: grid;
	grid-template-columns: repeat(3, auto);
	border: 2px solid gold;
	border-radius: 2px;
	}
#droppables div {
	display: flex;
	width: 210px;
	height: 210px;
	text-align: center;
	align-items: center;justify-content: center;
	border: .05px dashed #ccc;
	}
#droppables div.correct {
	border: .05px dashed gold;
	color: #925662;
	}
#draggables {
	display: grid;
	grid-template-columns: repeat(3, auto);
	text-align: center;
	align-items: center;
	grid-gap: 3px;
	}
#titre {
	text-align: center;
	font-size: 1.4rem;
	}
button {
	border: 1px solid black;
	font-size: 16px;
	font-variant: small-caps;
	border-radius: 5px;
	padding: 5px 10p 5px 10px;
	}
a {
	text-decoration: none;
	color: black;
}