/* Feuille de style pour la page index.html */

html,
body {
	min-height: 100vh;
	margin:0;
	position: relative;
}

h1 {
	text-decoration: solid underline lightcoral;
	text-decoration-skip-ink: none;
}

.pages {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-content: space-around;
	margin: 0 1em;
}

.pages>* {
	padding: 0.6em;
	margin: .3em 1em;
	background-color: lightcoral;
	border-radius: 1em;
	transition: transform .5s;
	text-decoration: none;
	color: black;
}

.pages :hover {
	background-color: orange;
	transform: scale(1.3);
}

.footer {
	display: flex;
	width: calc(100vw - 2em);
	padding: 0 1em;
	margin: 1em 0 0 0;
	justify-content: space-between;
	bottom: 0;
	left: 0;
	background-color: #1a1a1a;
	position: absolute;
}

.footer>p,
.footer>a {
	margin: 0;
	color: #ccc;

}