/* /tutorials/sql/Scratch/styles.css */

*: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:ivory;
	font-family:sans-serif;
}
#box {
	max-width:1026px;
	margin: 0 auto;
}
#head {
	padding-top: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-between;
}
#head div img {
	flex:1;
	width:40%;
	display:block;
	margin:0 auto;
}
#title {
	padding:5px 3px 3px 3px;
	border:5px double brown;
	text-align:center;
	font-size:14px;
}
#menu {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.tn {
	margin:15px 5px;
	cursor: pointer;
}
.tn img {
	border:2px solid;
	border-color:gold;
}
.tn p {
	text-align:center;
	font-size: 16px;
}
@media screen and (orientation:landscape) {
	#title {
		padding:10px 6px 6px 6px;
		font-size:20px;
	}
	#head div img {
		width:60%;
	}
}
