
textarea, input, div {
    caret-color: transparent; /* Masque le curseur */
  /*  pointer-events: none;     /* Désactive les clics */
    user-select: none;        /* Empêche la sélection de texte */
}



html, body {
  height: 100%;
  margin: 0; /* Supprime les marges par défaut */
}

img#logo {
	margin-bottom: 20px;
	width: 200px;
	
}

div#fram {
	width:200px;
	float:left;
	height:100%;
	background-color: grey;
	padding: 10px;
}

div#page {
	background-color: grey;
	color: white;
	widht:1000px;
	width:100%;
	
}



.choix {
	background-color: rgb(250,70,22);
	
	border:1px black;
	
	color: black;
	visited: white;
	text-align: center;
	
	padding: 5px;
	margin: 5px;
	border-radius: 5px;
	
	cursor: pointer;

}

.choix:hover {
	color: grey;
	background-color: orange;
}