/* /tutorials/simcom/pages.css */
*:focus {outline: none;} /* prevents outline on clicked items */
* { /* reset */
	padding:0;
	margin:0;
	box-sizing:border-box;
}
body {
	background-color:#008;
	font-family:sans-serif;
	color: brown;
}
pre {
	margin:2px 0px 0px 10px;
	color:darkgreen;
}
.inlinePre {
	color:darkgreen;
	font-family: monospace;
	padding:0 3px;
	font-weight:bold;
	font-size: 20px;
}
p {
	margin: .5em 0;
}
a {
	color:red;
}
b {
	color:blue;
}
ul {
	margin-left: 20px;
}
li {
	margin-left:15px;
}
#part1 img, #part2 img {
	display:block;
	margin: 0 auto;
	max-width:100%;
	height:auto;
}
.checkImg {
	width:97vw;
	max-width:800px;
}
.textC {
	display:block;
	text-align:center;
}
.check {
	background-color: ivory;
	min-width:300px;
}
#part1, #part2 {
	padding: 10px;
}
#part1 {
	padding-bottom: 0;
}
#part2 {
	padding-top:0;
}
.task, .checker, .answer {
	color:red;
}
.checker, .answer {
	cursor:pointer;
}
#main {
	background-color:ivory;
	width:96vw;
	max-width:1200px;
	margin: 1vw auto;
	padding-bottom: 1vw;
}
#head {
	padding-top: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-around;
}
#head div img {
	width:70%;
	display:block;
	margin:0 auto;
}
#title {
	color:blue;
	font-style:italic;
	font-family:serif;
	font-size:40px;
	text-align:center;
}
.button {background-color:lime;
	padding:2px 3px;
	cursor:pointer;
	border-radius:10%;
	font-size:40px;
}
#stuff {
	padding:0 5px;
	font-size:32px;
}
#part3 {
	margin-top:10px;
	display:inline-block; /* just big enough for content */
	position:absolute; /* centering hack */
	left:50%;
	transform: translateX(-50%);
}
#head3 {
	display:flex;
	align-items: center;
	justify-content: space-around;
	background-color: ivory;
	color: navy;
	font-size:40px;
}
#head3 div img {
	width:80%;
}
.check {
	padding:10px;
}
.answer {
	text-align:center;
	border-bottom:1px solid blue;
	padding-bottom:3px;
}
#crash {
	text-align:center;
	border: 1px solid black;
	margin: 5px auto;
	padding: 5px;
	max-width:300px;
}
.example {
	margin:-5px 0;
	text-align:center;
	font-size:16px;
	color:black;
}
@media screen and (orientation:landscape) {
	#title {
		font-size: 24px;
	}
	pre {
		margin:3px 0px 0px 30px;
	}
	.button {
		padding:4px 8px;
		font-size: 24px;
	}
	#stuff {
		display:flex;
		padding:0 20px;
	}
	#part1 {
		flex:1;
		padding: 10px;
	}
	#part2 {
		flex:1;
		padding: 10px;
		border-left: 2px solid brown;
	}
	#button5, #start7 {
		padding:10px;
		border-radius: 5%;
	}
	#head3 {
		font-size: 20px;
	}
	#head3 div img {
		width:50%;
	}
	#title, .button, #stuff {
		font-size: 20px;
	}
}

