body, html {
	box-sizing: border-box;
	font-family: sans-serif;
	margin: 0;
	background-color: hsl(230, 10%, 50%);
}

html, body {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}


* {
	box-sizing: border-box;
}


.nav-bar {
	/*float: left;*/
	flex: 0 1 auto;
	/*background-color: red;*/
	margin: 0 auto;
	position: relative;
	display: block;
	/*padding: 10px;*/
	padding: 0;
	/*padding-left: 10px;*/
	vertical-align: center;
	/*list-style-type: none;*/
	display: flex;
	/*flex-ba*/
	text-transform: uppercase;
	/*font-size: 16px;*/
}


.stealth-link {
	color: inherit;
	text-decoration: inherit;
}

.nav-bar > li {
	display: block;
	float: left;
	position: relative;
	margin: auto 0;
	padding: 0 10px;
	border-right: 4px solid white;
	/*padding: 0;*/
	/*padding-right: 10px;*/
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	font-size: 24px;
}
.nav-bar > li:last-child {
	/*color: red;*/
	border-right: none;
}


.header {
	background-color: hsl(230, 100%, 35%);
	color: white;
	padding: 10px;
	width: 100%;
	left: 0;
	right: 0;
	z-index: 10;
	/*vertical-align: center;
	align-content: center;*/
	/*text-align: center;*/
	display: flex;
}
.header a:hover {
	color: #DDF;
}

.footer {
	flex-shrink: 0;

	background-color: hsl(230, 100%, 25%);
	color: #ddd;
	padding: 5px;
	width: 100%;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 10;
	text-transform: uppercase;
	font-size: 12px
}
.footer a:hover {
	color: #BBD;
}


/*.header-logo {
	height: 80px;
	margin-top: -25px;
	margin-left: 5px;
	float: left;
}*/
/*.header-title h1, .header-title h2, .header-title h3 {*/

h1, h2, h3 {
	margin: 0;
}
.header-title {
	font-family: 'Roboto', sans-serif;
	float: left;
	color: white;
	/*background-color: red;*/
}

.number-color {
	/*font-size: 18px;*/
	/*text-align: center;*/
	/*color: hsl(214, 100%, 88%);*/
	color: white;
}


.content {
	flex: 1 0 auto;

	padding: 10px;

	width: 1000px;
	margin: 0 auto;
	background: white;

	box-shadow: rgba(0,0,0, 0.5) 0 0 20px;
	z-index: 1;

	position: relative;
}

.content h1, .content h2, .content h3 {
	margin: 0;
	color: hsla(220, 80%, 25%, 1);
}

.photo-content {
	flex: 0 1 auto;
	z-index: 10;

	width: 100%;
	background: white;

	height: 350px;
}

.photo-entry {
	width: 100%;
	height: 100%;
}

.photo-entry img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.box-right {
	float: right;
	/*position: fixed;*/
	/*height: 100px;*/
	/*width: 100px;*/
	padding: 5px;
	right: 0;
	top: 0;
	/*background-color: red;*/
	background-color: hsl(230, 50%, 85%);
	border-radius: 4px;
}

.border-image {
	border: 8px solid hsl(230, 100%, 35%);
	margin: 5px 0;
}
/*
.header, .photo-content {
	width: 1400px;
	margin: 0 auto;
}*/

@media screen and (max-width: 1220px) {
	.nav-bar > li {
		font-size: 20px;
	}
}

@media screen and (max-width: 1100px) {
	.nav-bar > li {
		font-size: 16px;
	}
	.content {
		width: 100%;
	}
}

@media screen and (max-width: 1000px) {
	.header {
		flex-direction: column;
		text-align: center;
	}
	.nav-bar {
		margin: 0 auto;
	}
	.nav-bar > li {
		font-size: 24px;
	}
}
