	/* FONTS */
@font-face {
	font-family: "Roboto-Light";
	src: url('../fonts/roboto/Roboto-Light.ttf') format('truetype');
}

@font-face {
	font-family: "Roboto-Bold";
	src: url('../fonts/roboto/Roboto-Bold.ttf') format('truetype');
}

@font-face {
	font-family: "Roboto-Regular";
	src: url('../fonts/roboto/Roboto-Regular.ttf') format('truetype');
}

	/* GENERAL */
body * {
	font-family: Roboto-Light, Arial;
	font-size: 20px;
}

html, body {
	width: 100%;
}

html {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

header {
	display: flex;
	flex-direction: column;
}

section {
	margin: 150px 50px;
}


	/* BARRE DE DEFILEMENT */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #888;
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}


	/* HAMEAU */
#hameau {
	position: fixed;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;

	background-color: #80CC28;
	color: #fff;

	transform-origin: bottom right;
	padding: 8px 16px;
	top: 100px;
	right: 0;

	z-index: 3;
}

#hameau img {
	margin-right: 16px;
	height: 64px;
	width: 64px;
}

#hameau * {
	color: #fff;
}

#hameau a {
	font-size: 16px;
	text-decoration: underline;
	color: #fff;
}

#hameau a:hover {
	color: #000;
}

#topBalise {
	display: inline-block;
	position: fixed;

	text-decoration: none;
	background-color: #888a;
	color: #fff;

	padding: 8px 24px;

	bottom: 0;
	right: 0;
}