/* acivities/Alpha 25/ */
*:focus {outline: none;} /* prevents outline on clicked items */
* { /* reset */
	padding:0;
	margin:0;
	box-sizing:border-box;
}
body { /* prevents text selection */
	-webkit-user-select: none; /* Safari 3.1+ */
	-moz-user-select: none; /* Firefox 2+ */
	-ms-user-select: none; /* IE 10+ */
	user-select: none; /* Standard syntax */
}
body {
	background-color:lightblue;/*#008;*/
	font-family:sans-serif;
	color: #007;
}
#main {
	margin: 0 auto;
	text-align: center;
	background-color:ivory;
	width:98vw;
	padding-bottom: 200px;
}
#head {
	padding-top: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-around;
}
#head div img {
	width:100%;
	display:block;
	margin:0 auto;
}
#tiles {
	width:720px;
	margin: 5px auto;
	display:none;
	flex-wrap: wrap;
	border-collapse: collapse;
	justify-content: center;
	border:10px groove goldenrod;
}
.tile {
	width:140px;
	height:140px;
	padding-top:23px;
	text-align: center;
	border: 1px solid brown;
	background-color:#d9ffd9;
	cursor:pointer;
	font-family:serif;
	font-size:80px;
}
#top {
	display:flex;
	align-items: center;
	justify-content: space-around;
}
#me, #user {
	font-size:72px;
	font-weight: bold;
}
#me {
	color:hotpink;
}
#user {
	color:lime;
}
#input_message {
	width:650px;
}
#input {
	color:navy;
	font-size:52px;
}
#message {
	color:blue;
	font-size:40px;
}
#control {
	display:flex;
	align-items: center;
	justify-content: space-around;
	max-width: 1200px;
	margin: 0 auto;
}
.butn, #tryWord {
	padding:5px 20px 10px 20px;
	margin:20px 10px;
	border:4px solid #db2;
	color:ivory;
	cursor:pointer;
	border-radius:10px;
	background-color:#00f;
	font-size:40px;
}
#tryWord {
	opacity: .5;
}
#panel {
	background-color:rgba(255,235,205);
	color:black;
	border:4px solid mediumblue;
	box-shadow:5px 5px 3px grey;
	font-size:48px;
	padding:10px 20px;
	visibility:hidden;;
}
#fixed {
	color:magenta;
}
@media screen and (orientation:landscape) {
	#head div img {
		width:60%;
	}
	.tile {
		width:70px;
		height:70px;
		padding-top:12px;
		font-size:40px;
	}
	#landscape {
		max-width: 1200px;
		margin:0 auto;
		display:flex;
		justify-content: center;
		align-items: center;
	}
	#control {
		order: 1;
		flex-flow: column;
		width:200px;
		margin:0 5px;
	}
	#tiles {
		width:370px;
		height:370px;
		order: 2;
		flex-shrink: 0;
		margin:0 5px;
	}
	#panel {
		order:3;
		border:2px solid mediumblue;
		font-size:24px;
		padding:5px 10px;
		width:370px;
		margin:0 5px;
	}
	.butn, #tryWord {
		padding:3px 10px 5px 10px;
		margin:10px;
		border:2px solid #db2;
		border-radius:5px;
		font-size:30px;
	}
	.butn {
		width:200px;
	}
	#me, #user {
		font-size:36px;
	}
	#input_message {
		width:auto;
	}
	#input {
		font-size:26px;
	}
	#message {
		font-size:20px;
	}
}


