* {
	box-sizing: border-box;
}

body {
	background-color: #fff4c6;
	margin: 0;
}

.container {
	text-align: center;
	background-color: rgba(255, 255, 255, 0.5);
	max-width: 75%;
	margin: 20px auto 20px auto;
	padding: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

h1 {
	text-align: center;
	font-family: 'Calligraffitti', cursive;
	font-size: 3em;
	background-color: #f7c9c9;
	margin: 0 auto;
	box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.2);
}

h2 {
	font-family: 'Calligraffitti', cursive;
}

#web, #minijeux, #archives {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 30px;
}

img {
	max-width: 100%;
}

a:hover {
	border: 5px solid #ffeb9f;
	font-size: 1.5em;
}

a {
	text-decoration: none;
	color: black;
	transition: 0.5s all;
	border: 5px solid rgba(0, 0, 0, 0);
	border-radius: 30px;
	padding: 10px;
}

div .fa {
	font-size: 25px;
}

footer {
	text-align: center;
	font-family: 'Calligraffitti', cursive;
	font-size: 12px;
	letter-spacing: 2px;
	margin: 0;
	padding: 5px;
	background-color: #f7c9c9;
	box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.2);
}