iframe html{
	overflow: hidden;
}
iframe{
	display: block;
	width: 100%;
	height: unset;
	border: none;
}

.ptsans{
	font-family: 'PT Sans', sans-serif;
}
.opensans{
	font-family: 'Open Sans', sans-serif;
}

.headerLinks{
	justify-content: space-between;
	align-content:flex-end;
	padding-top: 70px;
}
.headerLinks>*{
	align-self: baseline;
}
.link{
	font-size: 90%;
	text-align: right;
	flex-shrink: 0;
}
@media (max-width:600px){
	.link{
		display: none;
	}
}

header a{
	transition: color .4s;
}
header .links a:hover{
	color: #cccccc;
}
#menu a{
	display:block;
	padding: 16px; 
}
.gallery > .galleryTile{
	width: 205px;
	max-width: 300px;
	height: 150px;
	margin: 10px;
	flex-grow: 1;
}
@media (max-width:700px){
	.gallery>.galleryTile{width: 150px;}
}
@media (max-width:400px){
	.gallery>.galleryTile{width: 120px;}
}
.galleryImg{
	position:relative;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	height: 100%;
	transition: .5s;
}
.galleryImg:hover{
	transform: scale(1.1);
}
.captionHover{
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	opacity:0;
	background-color:rgba(255,255,255,0.7);
	transition:opacity .4s;
}