body, html {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}
body {
	background-color: #111111;
	font-family: 'Montserrat', sans-serif;
	display: flex;
	flex-direction: column;
	
}
.image {
	display: grid;
	height: 100%;

}

img {
	max-width: 100%;
	max-height: 96vh;
	margin: auto;
}
.nav {
	margin-top: auto;
	min-width: 0;
	display: flex;
	flex: 0 0 40px;
	background-color: #272727;
}
.nav-link {
	display: flex;
	width: 120px;
	justify-content: center;
	align-items: center;
}

a {
	color: #F0F0F0;
	text-decoration: none;
	font-size: 14px;
}

.brand {
	display: flex;
	align-items: center;
	font-weight: 600;
	color: #606060;
	margin-left: auto;
	padding: 0 20px;
	cursor: default;
}

.active {
	background-color: #676767;
}