/* /activities/My Scratch Adentures/style.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:#008;
	font-family:sans-serif;
}
#main {
	background-color:ivory;
	width:92vw;
	max-width: 1050px;
	margin: 1vw auto;
	padding-bottom: 1vw;
}
#head {
	padding-top: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-around;
}
.headImg {
	width:70%;
	display:block;
	margin:0 auto;
}
#title {
	display:flex;
	align-items: center;
	justify-content: space-between;
}
#title img {
	width:84px;
	height:84px;
}
#title span {
	font-size:24px;
	color:blue;
	padding: 0 20px;
}
.cat {
	width:10%;
}
#pics {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin:0 10px;
}
.pic {
	margin-top:10px;
	border:2px solid navy;
}
.mulawa1 {
	text-align:center;
	margin:10px 5px 0 5px;
}
.mulawa1 img {
	max-width:100%;
	margin-top:5px;
	border: 1px solid blue;
	padding:2px;
}
.mulawa1 p {
	font-style:italic;
	font-size: 16px;
	color:red;
}
@media screen and (orientation:landscape) {
	#title span {
		font-size:24px;
	}
}

