body {
	font-family: 'Roboto', sans-serif;
	background-color: #ffffff;
	color: #222;
	margin: 0;
	padding: 0;
	text-align: center;
}

header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px 20px;
}

.entete {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.logo_PA {
	max-width: 90vw;       /* Ne dépasse jamais 90% de la largeur de l'écran */
	max-height: 180px;      /* Hauteur maximale contrôlée */
	width: auto;
	height: auto;
	display: block;
}

.titre {
	font-size: 3rem;
	margin: 10px 0 0;
	font-weight: 700;
	color: #333;
}

/* Boutons */
.button-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.button-class {
	background-color: #3aa76d;
	color: white;
	border: none;
	padding: 25px 50px;
	font-size: 1.5rem;
	font-weight: 900;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.button-class:hover {
	background-color: #2e8556;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
	.titre {
		font-size: 3rem;
	}
	.logo_PA {
		max-height: 150px;
	}
	.button-class {
		width: 80%;
		font-size: 1.5rem;
	}
}