html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Custom CSS */

#main {
  width: 100%;
  height: 100vh;
  background-color: #161616;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 10% 20px 10%;
}

.btn_choix {
  border: none;
  width: 250px;
  height: 40px;
  margin-left: 50px;
  margin-right: 50px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn_choix p {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  font-family: 'Roboto', sans-serif;
  font-size: 18pt;  
}

#btn_lettre {
  background-color: white;
  color: #161616;
  min-width : 250px;
  margin-top : 15px;
}

#btn_lettre:hover {
  background: linear-gradient(90deg, #48c6ef, #6f86d6);
  color: white;
  cursor: pointer;
}

#btn_recommencer {
  background: linear-gradient(45deg, #7530c9, #c97530);
  color: white;
  min-width : 250px;
  margin-top : 15px;
}

#btn_recommencer:hover {
  background: none;
  background-color: white;
  color: #161616;
  cursor: pointer;
}

#container {
  width: 100%;
  height: 85%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#interaction{
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#game_screen {
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
}

#pendu_mot{
  width: 100%;
  height: 100px;
  display: flex;
  margin-bottom: 0;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 25pt;
  letter-spacing: 20px;
}

#container2 {
  width: 100%;
  height: 60px;
  display: flex;
  flex-wrap : wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#container2 p {
  color: white;
  font-size: 18pt;
  font-family: 'Roboto', sans-serif;
}

#lettres_entrees {
  width: 50%;
  height: auto;
  display: flex;
  min-width : 250px;
  margin: 0 0 0 0;
  justify-content: center;
  align-items: center;
}

#vies_restantes {
  width: 50%;
  height: auto;
  display: flex;
  min-width : 250px;
  margin: 0 0 0 0;
  justify-content: center;
  align-items: center;
}

@media (max-width: 660px) {
	
	#main{
		height: 100%;
	}
	
	#pendu_mot{
		font-size: 15pt;
		width : 50%;
	}
	
  }