/* /magnetic/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:#008;
	font-family:sans-serif;
	font-size: 24px;
}
ul {
	text-align: left;
	margin-left:20px;
	margin-bottom:5px;
	color:blue;
}
a {
	color:red;
}
p {
	margin: 5px 0;
}
b {
	color:brown;
}
#main {
	background-color:ivory;
	width:98vw;
	margin: 1vw auto;
	padding-bottom: 1vw;
	max-width:1200px;
}
#head {
	padding-top: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-around;
}
#head div img {
	width:70%;
	display:block;
	margin:0 auto;
}
#box1, #box2 {
	text-align:center;
	border:5px double brown;
	padding:5px;
	margin-bottom:5px;
}
#m1, #m2, #install {
	width:100%;
	height:auto;
}
#m1 {
	max-width: 264px;
}
#m2 {
	max-width: 380px;
}
#install {
	max-width: 724px;
}
@media screen and (orientation:landscape) {
	#rest {
		display:flex;
	}
	#box1 {
		flex:1;
	}
	#box2 {
		flex:2;
	}
}

