body {
	font-family: "Cambria";
	font-size: 1.9vw;
	font-weight: 200;
	color: black;
	display: flex;
	margin: 0;
}

.page-container {
	display: flex;
	min-height: 100vh;
}

/*marge latérale gauche*/
.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 20%;
	padding: 2rem;
	box-sizing: border-box;
	overflow-y: auto;
	font-size: 0.9vw;
}

/*partie principale de la droite*/
.content {
	margin-left: 20%;
	padding: 2rem;
	box-sizing: border-box;
}


table {
	width: 100%;
	border-collapse: collapse;
}

th {
	text-align: left;
	padding-top: 4px;
}

td {
	padding-top: 4px;
}

.petit {
	font-size: 15px;
	font-weight: 200;
}

.petit2 {
	font-size: 15px;
	font-weight: 200;
}

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

a:hover {
	filter: blur(1.2px);
	color: fuchsia;
}

tbody tr:nth-child(odd) {
	background-color: none;
	border-color: none;
}

tbody tr:hover {
	background-color: #FFFF00;
	border: #FFFF00;
}

.titre {
	font-family: "Cambria";
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 2px;
	text-align: left;
	color: black;
	height: 70px;
	line-height: 10px;
	/*border: 2px solid black; */
	
}

#txt-titre {
	margin-left: 0px;
	font-weight: 900;
	text-decoration: underline;
}

.lisez-moi {
	color: black;
	font-style: oblique;
	font-size: 15px;
	display: none;
}

.intro {
	bottom: 0px;
}

#contact {
	position: fixed;
	right: 5px;
	bottom: -8px;
	font-weight: 900;
}

.gif {
	width: 45px;
	margin-left: 4px;
}

.gif_a_propos {
	width: 30px;
	vertical-align: middle;
}

.logo {
	width: 10vw;
}

.bloc_logo {
	position: fixed;
	right: 6px;
}

.bloc_contact {
	position: fixed;
	right: 40px;
	bottom: 40px;
}

.contact {
	width: 80px;
}

.hover-link {
	position: relative;
	display: inline-block;
	margin-right: 0px;
}

.hover-link img {
	position: absolute;
	top: 0;
	left: 110%;
	width: 200px;
	height: auto;
	opacity: 0;
	pointer-events: none;
	transition: opacity 1s ease;
}

.hover-link:hover img {
	opacity: 1;
}

