.word-page {
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 1000;
	top: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px 10px;
	box-sizing: border-box;
}

.word-page-content-container {
	position: relative;
	width: 100%;
	max-width: 800px;
	max-height: 95%;
	overflow: auto;
	background-color: whitesmoke;
	border-width: 0px;
	border-radius: 5px;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.word-word-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0px 20px;
	flex-wrap: wrap;
}

.word-level {
	font-family: hand;
	font-size: 24px;
	background-color: darkgray;
	color: lightgrey;
	padding: 20px;
	border-width: 0px;
	border-radius: 10px;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .2), 0 1px 0 rgba(255, 255, 255, .5);
}

.word-english {
	font-family: hand;
	font-size: 24px;
	background-color: rgb(253,94,83);
	color: whitesmoke;
	padding: 20px;
	border-width: 0px;
	border-radius: 10px;
}

.word-japanese {
	font-family: hand;
	font-size: 24px;
}

.word-page-speaker {
	position: relative;
	width: 30px;
	height: 30px;
	background-size: auto 60%;
	background-repeat: no-repeat;
	background-position: center;
	margin: 10px;
	background-color: #e3e3e3;
	cursor: pointer;
	box-shadow: 2px 2px 6px lightgrey;
	border-width: 0px;
}

.word-page-close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-family: hand;
	font-size: 18px;
	background-color: whitesmoke;
	color: darkslategray;
	margin: 0px;
	padding: 3px 9px;
	border-width: 0px;
	border-radius: 3px;
	cursor: pointer;
	user-select: none;
}

.word-page-close:hover {
	background-color: #E0E0E0;
}