body {
	margin: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-family: "Nerko One", cursive;
	background-color: #171727;
}

/* NAVBAR AREA */
nav {
	background-color: #171727;
	color: #f8f4dd;
	position: fixed;
	width: 100%;
	height: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1rem;
	box-sizing: border-box;
	z-index: 1000;
	overflow: hidden;
}

nav .clickable-area {
	display: block;
	text-decoration: none;
	color: inherit;
}


nav .container {
	width: 100%;
	max-width: 1500px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav .left,
nav .right {
	width: 50%;
}

nav .left {
	margin-left: 5rem;
	display: flex;
	align-items: center;
}

nav .left img {
	height: 3rem;
	margin-right: 1rem;
}

nav .right {
	margin-right: 4rem;
	text-align: right;
}

nav .right a {
	width: 15rem;
	height: 5rem;
	text-decoration: none;
	color: #f8f4dd;
	font-size: 1.5rem;
	padding: 1.5rem;
	background-color: #171727;
}

nav .right a:hover {
	background-color: rgb(65, 65, 112);
}

/* Pour mobile */
@media (max-width: 768px) {
	nav .left {
		margin-left: 1rem;
		width: 35%;
	}

	nav .right {
		width: 65%;
		margin-right: 1rem;
	}
}

/* CONTENT AREA */
main {
	background-color: #f8f4dd;
	color: #171727;
	margin-top: 3.5rem;
	flex: 1;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
	font-family: "Google Sans", "Roboto", Arial, sans-serif;
}

.article {
	box-sizing: border-box;
	width: 100%;
}

/* FOOTER AREA */

footer {
	background-color: #171727;
	color: #f8f4dd;
	width: 100%;
	padding: 1rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: auto;
}

footer .container {
	width: 100%;
	max-width: 1400px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

footer .website-footer-link {
	color: #f8f4dd;
	text-decoration: none;
	margin: 0.5rem 0;
}

footer .footer-bottom {
	width: 100%;
	margin-top: 1rem;
}

/* Media query for larger screens */
@media (min-width: 769px) {
	footer .container {
		flex-direction: row;
		justify-content: space-between;
	}

	footer .footer-bottom {
		width: auto;
		margin-top: 0;
		text-align: right;
	}
}

/* Media query for smaller screens */
@media (max-width: 768px) {
	footer .container {
		flex-direction: column;
		align-items: center;
		padding-top: 1rem;
	}

	footer .website-footer-link {
		padding-inline: 2rem;
		margin: 0.5rem 0;
	}

	footer .footer-bottom {
		text-align: center;
		margin-top: 1rem;
		width: 100%;
	}
}




/* Scrollbar avec la color palette */
::-webkit-scrollbar {
	width: 0.8em;
}

::-webkit-scrollbar-track {
	background: #00000000;
}

::-webkit-scrollbar-thumb {
	background-color: #B02906;
	border-radius: 0.8rem;
	border: 3px solid #171727;
}