/* all.css */

*, * * {
	/* background-color: rgba(50,100,250,0.05); */
	font-family: Helvetica, sans-serif;
}

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

main {
	width: 100%;
	margin: 0;
	padding: 0;
}

.communes {
	display: flex;
	justify-content: center;
}

.communes > .commune {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 30px;
	padding: 20px;
	width: 300px;
	border: 3px solid black;
	border-radius: 10px;
	box-shadow: 0 0 20px;
	text-decoration: none;
	cursor: pointer;
	color: black;
}

@media screen and (max-width: 400px) {
	.communes > .commune {
		width: 100%;
	}
}

.communes > .commune:hover {
	-ms-transform: scale(1.1,1.1); /* IE 9 */
	transform: scale(1.1,1.1); /* Standard syntax */
	box-shadow: 0 0 0;
}

.communes > .commune > h2 {
	text-align: center;
	margin-bottom: 0;
}

.communes > .commune > .blason {
	width: 100%;
}