body {
	margin: 0;
}

.body {
	min-height: calc(100vh - 69px);
}

html {
	margin: 0;
	padding-top: 69px;
	scroll-behavior: smooth;
}

.presentation {
	border-radius: 5px;
	border-left: #2a0a10 solid 5px;
	background-color: #f9e5cd;
	padding: 25px;
	box-shadow: 0 2px 5px rgba(42, 10, 16, 0.1);
	transition: all 0.3s ease;
}

.presentation:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(42, 10, 16, 0.2);
	transition: all 0.3s ease;
}


img {
	pointer-events: none;
}

.rubrique {
	scroll-margin-top: 69px;
	min-height: calc(100vh - 69px - 77px);
	text-align: center;
}

.rubrique h1 {
	margin: 0 auto 10px;
	text-align: center;
	text-decoration: underline;
	padding: 15px 0;
}

.colone {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.colone * {
	margin: 20px 0;
	margin-right: 5px;
	padding: 0 20px;
}

.colone-fix {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.colone-fix * {
	margin: 0;
	margin-right: 5px;
	padding: 0 20px;
}


@media screen and (max-width: 768px) {
	html {
		padding-top: 160px;
	}

	.rubrique h1 {
		padding-top: 10px;
	}

	.rubrique {
		scroll-margin-top: 160px;
		width: auto;
	}
	
	.colone {
		flex-direction: column;
	}

	.colone * {
		margin: 20px 0;
	}
}

/* Scrollbar styling */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background-color: #fffff4;
}

::-webkit-scrollbar-thumb {
	background-color: rgb(139, 26, 26);
	border: 2.5px solid #c7c5b8;
}

::-webkit-scrollbar-thumb:hover {
	background-color: rgb(178, 34, 34);
}