body {
	width: 100%;
	min-width: 270px;
	margin: 0px;
	font-family: arial;
	font-size: 1em;
}

h2 {
	text-align: center;
}

/* Prevents double tap from zooming in */
* {
	touch-action: manipulation;
}

.outer-wrapper{
	text-align: center;
}

.row {
	display:flex;
	align-items:center;
	justify-content:center;
/*  	background:orange;  */
}

.button {
	margin: auto;
	margin-top:10px;
	margin-bottom:5px;
	background: blue;
	color: white;
	font-size: 1.3em;
	height:2em;
	border-radius:10px;
	width:10em;
	padding-top:15px;
}

.margin-top-minus {
	margin-top: -10px;
}

.margin-top-small{
	margin-top:5px;
}

.margin-top-small-mid {
	margin-top: 10px;
}

.margin-top-mid{
	margin-top:15px;
}

.margin-top-large{
	margin-top:30px;
}

.margin-top-xlarge{
	margin-top:40px;
}

p{
	color:#b30000;
}

.small {
	font-size: 0.8em;
}

#prompt {
	font-size: 1.2em;
}

#word {
	font-weight: 900;
	font-size:1.6em;
	line-height: 2.5;
	font-family: Verdana;
}

#result-message {
/*	display: none;*/
	font-size:1.5em;
	font-weight: bold;
	color: #006600;
}

#next-btn {
	display: none;
	background-color: orange;
}

#definition-link {
	display:none;
	text-decoration: none;
	color:blue;
	font-weight:bold;
}


.column {
	flex: 10%;
	text-align: start;
}

.label-score, .score-data, .label-highscore {
	font-size:1.5em;
	font-weight: bold;	
}

.score-data {
	margin: 10px;
	background: grey;
	padding:5px;
	border-radius:5px	
}

.label-highscore {
	margin-left: 20px;
}

.options {
	display: block;
	width:60%;
	margin-left:auto;
}

@media screen and (max-width: 1600px) {
	.options {
		width:65%;
	}
}

@media screen and (max-width: 1200px) {
	.options {
		width:70%;
	}
}

@media screen and (max-width: 900px) {
	.options {
		width:75%;
	}
}

@media screen and (max-width: 800px) {
	.options {
		width:80%;
	}
}

@media screen and (max-width: 700px) {
	.options {
		width:85%;
	}
}

@media screen and (max-width: 600px) {
	.options {
		width:90%;
	}

	.label-score, .score-data, .label-highscore {
		font-size:1.3em;	
	}
}

@media screen and (max-width: 500px) {
	.options {
		width:95%;
	}

	.label-score, .score-data, .label-highscore {
		font-size:1.2em;	
	}
}

@media screen and (max-width: 400px) {
	.options {
		width:98%;
	}
}