*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}

body {
	margin: 0;
	height: 100vh;
	overflow: hidden; /* Empêche le défilement classique */
	perspective: 1000px; /* Définit la profondeur de la perspective */
	display: flex;
	align-items: center;
	justify-content: center;
	background: #002003; /* Couleur de fond sombre pour l'effet */
	color: rgb(183, 208, 159); /* Couleur du texte */
	
  }

  h2{
	margin-right: 50%;
  }

  h3{
	margin-left: 50%;
	margin-top: 70%;
  }

  .scene {
	position: relative;
	height: 100vh;
	width: 100%;
	transform-style: preserve-3d; /* Active la gestion de la profondeur */
  }

  .container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateZ(0px); /* Position de base */
	width: 500px;
	height: 500px;
	background: transparent;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	text-align: center
  }


  .titre{
	background: rgb(41, 63, 42);
	height: 200px
  }

 img {
	max-width: 100%;
 }

 p{
	font-size: x-small;
 }
 