* { /* reset */
	padding:0;
	margin:0;
	box-sizing:border-box;
}
.no_select {
	-webkit-user-select: none; /* Safari */
	user-select: none; /* Standard syntax */
}
.no_drag {
	user-drag: none; /* Standard syntax */
	-webkit-user-drag: none; /* Safari and Chrome */
}
body {
	background-color:ivory;
	font-family:sans-serif;
	font-size:3vmin;
}
#page {
	margin: 2vmin auto;
	width:98vmin; height:70vmin;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap:.5vmin;
}
#map {
	width:50%; height:auto;
	border:1vmin groove gold;
}
#head {
	width:90%;
	display:flex;
	justify-content: space-around;
	align-items: center;
}
#head img, #left img, #right img {
	height:6vmin;
}
#head #title img {
	height:4vmin;
}
ul {
	margin-top:1vmin;
	display:flex;
	flex-direction: column;
	align-items: center;
}
li {
	margin-top:1vmin;
	cursor: pointer;
	color:navy;
}
#info {
	margin-top:1.5vmin;
	text-align: center;
}
