html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
	background-color: #09487b;
}
.gallery {
	background-color: #09487b;
	width: 180px;
	margin-top: 1px;
	margin-right: auto;
	margin-left: auto;
	border: 1px solid #999;
	height: 155px;
	overflow: hidden; /*Avoids showing all of the images momentarily while JS loads */
	border-radius: 15px;
}
.gallery img {
	margin: 5px;
}
