body {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: inherit;
}

.display {
	background: rgb(238, 238, 238);
}

#document {
	width: 100% !important;
	min-height: 80vh !important;
}

.bouton-retour {
	position: fixed;
	top: 0;
	left: 0;
	margin: 10px;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #173E5E;
	background-color: #fff;
	transition: 0.2s;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

.bouton-retour:hover {
	background-color: #e07a5f;
	color: #fff;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
    padding: 20px;
    width: 100%;
    background-color: #151337;
    color: #fff;
	margin-bottom: 50px;
	text-align: center;
}

.logo {
    max-height: 100px;
	max-width: 90vw;
}

.accueil {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	justify-content: center;
	align-items: stretch;
	grid-gap: 20px;
	padding: 0 20px 50px 20px;
	width: 500px;
	max-width: 90vw;
	margin: 0 auto;
}

.accueil a {
	padding: 20px;
	width: 100%;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	font-weight: bold;
	box-shadow: 0px 2px 5px rgb(0 0 0 / 20%);
	border-radius: 5px;
	transition: 0.2s;
	background-color: #151337;
	text-transform: uppercase;
	word-break: break-word;
}

.accueil a:hover {
	transform: translateY(-5px);
	box-shadow: 1px 25px 25px rgb(0 0 0 / 20%);
}

footer {
	width: 100%;
	padding: 10px;
	text-align: center;
    margin-top: auto;
}