#sentence{
	height: 40px;
}
.word{
	display: inline-block;
	border: 1px solid black;
	padding: 5px;
	margin: 5px;
	background-color: white;
}
#input{
	display: inline-block;
	border-bottom: 2px dashed black;
	width: 400px;
	height: 30px;
	margin-left: 10px;
}
#next{
	background-color: dodgerblue;
	margin: 10px;
	color: white;
	border:  none;
	padding: 10px;
	border-radius: 5px;
}
#final{
	display: inline-block;
}
#game{
	display: none;
	width: 100%;
	max-width: 350px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#tenses{
	width: 100%;
	max-width: 350px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#tenses div{
	background-color: dodgerblue;
	border-radius: 10px;
	padding: 10px;
	margin: 5px;
	text-align: center;
	color: white;
	font-weight: bold;
	cursor: pointer;
}
#tenses div:hover{
	background-color: blueviolet;
}