/*Police Gravity par Vincenzo Vuono (CC BY 4.0)*/
@font-face {
	font-family: Gravity;
	src: url(./fonts/Gravity-Regular.otf);
	font-weight: normal;
}
@font-face {
	font-family: Gravity;
	src: url(./fonts/Gravity-Light.otf);
	font-weight: lighter;
}
@font-face {
	font-family: Gravity;
	src: url(./fonts/Gravity-Bold.otf);
	font-weight: bold;
}

body {
	color: #36444e;
	font-family: Gravity, sans-serif;
	font-size: 18px;
	font-weight: normal;
	margin: 0;
}

h1 {
	font-family: Gravity;
	font-weight: lighter;
	color:#071826;
}
a {
	color: #6593CC;
	text-decoration: none;
}
a:hover {
	color:#164059;
	text-decoration: underline;
}

.header {
	display:grid;
	grid-template-columns: 1fr;
	background-color: #36444e;
	min-height: 8px;
}
.wrapper {
	display: grid;
	grid-template-columns: 1fr 40% 1fr;
	grid-gap: 10px;
	margin:0 auto;
}
#bio {
	grid-column: 2 / 2;
	grid-row: 1;
	text-align: justify;
}
#contact {
	grid-column: 2 / 2;
	grid-row: 2;
	text-align: left;
	background-color: #f2f2f2;
	padding: 10px;
}

.image-ronde {
	border-radius: 50%;
	margin-left: 15px;
	margin-bottom: 15px;
}

.gras {
	font-weight: bold;
}