@charset "UTF-8";
/* CSS Document */

body {
	background-color: darkgrey;
	font: 12px Arial, Helvetica, sans-serif;
	color: #FFF;
	position: relative;
	min-height: 100vh;
	margin: 0;
	overflow: hidden;
	background-image: url('image_fond_menu.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
#canvas_holder {
	margin: 0 auto;
	width: 900px;
	height: 500px;
	background: #FFF;
	display: none; /* Cache le canvas au départ */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#canvas {

}
#feedback {
}

#ecran_accueil {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

#titre {
	display: block;
	margin: 0 auto 30px auto; /* 30px d'espace entre le titre et le bouton */
	max-width: 100%;
}

#btnStart {
	display: block;
	margin: 0 auto;
	cursor: pointer;
	max-width: 100%;
	transition: transform 0.2s;
	opacity: 0.7;
}

#btnStart:hover {
	transform: scale(1.05); /* Agrandit légèrement l'image au survol */
}
#cinematique {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	z-index: 100;
}

#texte_cinematique {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	max-width: 800px;
	padding: 40px;
}

#dialogue {
	font-size: 20px;
	line-height: 1.6;
	margin-bottom: 30px;
	color: white;
	min-height: 100px;
	font-family: "Perpetua Titling MT", serif;
}