body{
	position:absolute;
top:0px;
right:0px;
bottom:0px;
left:0px;
	background-color: rgb(255, 255, 255);
}
.main{
	display: flex;
	width: 100%;
	height: 50%;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	
}
.wordContainer{
	display: block;
	width:50%;
	height: 50%;
}
.word{
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#word{
	width: 100%;
	height: 25%;
	font-size: 25px;
	text-align: center;
	border-radius: 5px;
	border: 0;
	background-color: rgb(240, 241, 243);
	padding: 0%;
	margin: 1%;
	font-family: 'Courier New', Courier, monospace;
	font-weight: bold;
}
#word:hover{
	background-color: rgb(243, 246, 246);
	outline: none;
}
#word:focus{
	background-color: rgb(216, 229, 229);
	outline: none;
}
#submitBtn{
	width: 60%;
	height: 25%;
	font-size: 25px;
	text-align: center;
	border-radius: 5px;
	padding: 0%;
	border: 0;
	margin: 1%;
	font-family: 'Courier New', Courier, monospace;
	font-weight: bold;
}
.displayContainer{
	width: 100%;
	height: 50%;
	font-size: 25px;
	text-align: center;
	border-radius: 5px;
	padding: 0%;
	border: 0;
	margin: 1%;
}
.word-display{
	font-family: 'Courier New', Courier, monospace;
}
.guess{
	width: 100%;
	height: 50%;
}
#canvasHangman{
	position: absolute;
	left: 30%;
	top: 50%;
	width: 40%;
	height: 50%;
	display: block;
}
.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	width: 500%;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	padding: 12px 16px;
	z-index: 1;
}

.dropdown:hover .dropdown-content {
	display: block;
}
span{
	font-weight: bold;
	font-family: 'Courier New', Courier, monospace;
}
td{
	border-top: 2px solid black;
	margin: 2%;
	padding: 10px;
	font-weight: bold;
	font-family: 'Courier New', Courier, monospace;
}
canvas{
	border: 2px solid black;
}
#backBtn{
	position: absolute;
	top: 5%;
	left: 5%;
	width: 5%;
	height: 5%;
	border: 0;
	background-color: rgb(240, 245, 255);
	border-radius: 5px;
	font-family: 'Courier New', Courier, monospace;
	font-weight: bold;
	
}
#backBtn:hover{
	background-color: rgb(198, 255, 255);
}