@font-face {
	font-family: "Belgiano";
	src: url(font/belgiano_serif/BelgianoSerif2.woff);
}

@font-face {
	font-family: "Yeseva";
	src: url(font/yeseva_one/YesevaOne-Regular.woff);
}
body{
	font-family: "Yeseva";	
	display: flex;
	gap: 80px;	
	align-items: start;

}
/*https://stackoverflow.com/questions/9280258/prevent-body-scrolling-but-allow-overlay-scrolling*/
.noScroll{
	overflow: hidden;
}
img{
	width: 250px;
	height: auto;
	display: block;
	margin-top: 20px;
}
aside{
	flex-basis: 100px;
	flex-grow: 0;
	flex-shrink: 0;
	margin-left: 30px;
	position:sticky ;
	top: 0;
	color: #96ADC8;
}
main{
	display: flex;
	flex-basis: 100px;
	flex-direction: row;
	flex-wrap: wrap;
	flex-grow: 1;
	flex-shrink: 1;
	gap: 20px;
	align-items: center;

}
h3{
	font-family: "Yeseva";
	color:#49525e;
	font-size: 20px;

}


.lightbox{
	display: none;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(150, 173, 200, 0.70);
}

.lightbox img{
	display: block;
	max-width: 70vw;
	max-height: 80vh;
	width: auto;
	height: auto;
}

.lightbox p{
	font-family: "Belgiano";
	margin-top: 150px;
	margin-bottom: 150px;
	color:#49525e;
	font-size: 30px;
	max-width: 1200px;
}

.visible{
	display: flex;
	align-items: center;
	
	flex-direction: column;
	/*color: #5C88BB;
	color : #FF9C00;*/
	overflow: scroll;
}

.center{
	justify-content: center;
}

.lightbox p.credits{
	font-size: 15px;
	font-style: italic;
	margin-top: 25px;
	margin-bottom: 50px;
}
.lightbox p.legend{
	font-size: 15px;
	margin-top: 50px;
	margin-bottom: 25px;
}

.lightbox a:hover p{
	color: #FF9B20;

}

a{
	color: #96ADC8;
	text-decoration: none;
	transition: color .3s;
}
a:hover{
	color: #49525e;
}
@media only screen and (max-width:1500px){
	.lightbox img{
	max-width: 50vw;
	max-height: 65vh;
	width: auto;
	height: auto;
}
}

@media only screen and (max-width: 600px){
aside {
	background-color: white;
	position: sticky;
	    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: auto;

}
body {
	display: flex;
	flex-direction: column;

}
img{width: 100%;}

.lightbox img{
	max-width: 75vw;
	max-height: 80vh;
	width: auto;
	height: auto;
}
.lightbox p{
	margin-top: 50px;
	margin-bottom: 50px;
	margin-left: 15px;
	margin-right: 15 px;
	font-size: 25px;
	max-width: 1200px;
}

}


