/* CSS Document */

body {
    width: 100%;
    height: 100%;
    padding: 0;
    overflow-x: hidden;
	background-color: #252525;
	color: #EDEDED;
}


.portrait {
	width:100%;
}


/* unvisited link */

a:link {
  color:#d4490b;
}

/* visited link */
a:visited {
  color:#993608;
}

/* mouse over link */
a:hover {
  color:#e5510b;
}

/* selected link */
a:active {
  color:#e5510b;
}


.container-sm {
	max-width: 650px;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
	text-align: center;
	font-size: 18px;
}

.photo-credit {
	font-size: 16px;
	font-style: italic;		
}


@media (min-aspect-ratio: 1/1) {
.portrait {
	object-fit: contain;
	width:100%;
	height:100vh;
}
}


