body {
	display: flex;
	align-items: center;
	flex-direction: column;
	font-family: 'Overpass', sans-serif;
	margin: 0;
	padding: 0 20vw;
	background: #f3f3f3;
}

h1 {
	font-weight: 900;
	margin-bottom: 0;
}

h2 {
	font-weight: 400;
	text-transform: uppercase;
	margin-top: 0;
}

.projets-container {
	margin-top: 10vw;
	display: flex;
	width: 100%;
	justify-content: space-between;
}

a {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #000;
	padding: 1px 25px;
	border: 2px solid #000;
	border-radius: 500px;
	transition: .3s;
}

a:hover {
	border-color: #fff;
	background: #000;
	color: #fff;
}