.container {
	max-width: 80%;
	margin: 0 auto;
	text-align: center;
	padding: 20px;
	background-color: #E5E5E5;	
}

#hangman-display {
	margin-bottom: 20px;
	color: #000042;
	background-color: #E5E5E5;
	font-weight: bold;
}

#word-display {
	margin-bottom: 20px;
	font-size: 24px;
	text-align: center;	
	font-weight: bold;
}

#letters-guessed {
    margin-bottom: 20px;
    font-size: 18px;
}

#guess-input {
    margin-bottom: 20px;
}

#guess-input input[type="text"] {
    padding: 8px;
    font-size: 16px;
}

#guess-input button {
    padding: 8px 16px;
    font-size: 16px;
    background-color: #000042;
    color: white;
    border: none;
    cursor: pointer;
}

#restart-button {
	padding: 8px 16px;
	font-size: 16px;
	background-color: #000042;
	color: white;
	border: none;
	cursor: pointer;
	display: block;
	margin: 0 auto; /* Ajoute une marge automatique à gauche et à droite pour centrer le bouton */
		
}

#guess-input button:hover {
    background-color: #000042;
}

#message {
    font-size: 20px;
    font-weight: bold;
    color: #900;
}

#instructions {
	font-size: 12px;
	background-color: #fffff;
	font-weight: normal;
	color: #000042;
	text-align: justify;
}

#word-image {
    width: 60px;
    height: 60px;
}
