@charset "utf-8";

.header {
	width: 100%;
	color: #FFFFFF;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-style: normal;
	font-size: clamp(25px, 3rem, 4vw);
	height: 4rem;
	background-color: #2056F3;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	position: fixed;
	display: flex;
}

.headerText {
	margin: 0;
	margin-left: auto;
	margin-right: auto;
	width: auto;
	height: 100%;
	display: flex;
	justify-content: center;
  	align-content: center;
  	flex-direction: column;
}

.backLink {
	position: absolute;
	text-align: left;
	margin-left: 0.5rem;
	height: 100%;
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	transition-property: margin-left;
	display: flex;
	justify-content: center;
  	align-items: center;
}

.backLink a {
	color: #FFFFFF;
	text-decoration: none;
	line-height: 100%;
}

#backArrow {
	overflow: hidden;
	display: inline-block;
}

#backText {
	opacity: 1;
	overflow: hidden;
	display: inline-block;
	transition-timing-function: cubic-bezier(.25,.8,.25,1);
	transition-duration: 0.3s;
	transition-property: max-height, opacity;
	transition-delay: 0s, 0.3s;
}

@media (max-aspect-ratio: 1/1) {
	.backLink {
		margin-left: 0.2em;
	}

	#backText {
		opacity: 0;
		max-height: 0;
		transition-delay: 0.3s, 0s;
	}
}

body {
	margin: 0;
	background-color: #CFCFCF;
	display: flex;
}

.body {
	text-align: justify;
	vertical-align: top;
	color: #333;
	background-color: white;
	font-family: "Libre Franklin","Helvetica Neue",helvetica,arial,sans-serif;
	font-style: normal;
	font-variant: normal;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	min-width: 60vw;
	width: 60vw;
	margin-left: auto;
	margin-right: auto;
	transition: width 175ms cubic-bezier(0.4, 0.0, 0.2, 1);
}

.body-padding {
	padding-top: 5em;
	padding-left: 2em;
	padding-right: 2em;
	text-align: justify;
	vertical-align: top;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-style: normal;
	font-variant: normal;
	color: #000000;
}

img {
	width: 40%;
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

@media (max-aspect-ratio: 1/1) {
	.image {
		width: 80%;
	}

	.body {
		width: 100%;
	}
}

img:hover {
	transform: translate(0, -14px);
	-webkit-box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

@keyframes fadein{
    0% {
		opacity: 0;
	}
    100% {
		opacity: 1;
	}
}

div.overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: hsla(0, 0%, 0%, 35%);
	display: grid;
	justify-content: center;
	align-content: center;
	animation: 0.3s ease-in-out 0s normal forwards 1 fadein;
}

div.overlay img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

div.overlay img:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
	width: auto;
}

.galleryContent {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding-top: 1rem;
}

.galleryContent ul {
	padding: 0;
	margin: 0;
    list-style-type: none;
	width: 100%;
}

.galleryContent ul li {
	max-height: 35vh;
	min-width: 100%;
	max-width: 100%;
}

.galleryContent ul li:not(:last-child) {
    margin-bottom: 2em;
}

.galleryContent ul li:last-child {
	margin-bottom: 3.5em;
}

.galleryImage {
	max-height: 35vh;
	min-width: 100%;
	max-width: 100%;
	object-fit: cover;
	vertical-align: bottom;
}

.copyright {
	position: fixed;
	text-align: center;
	text-decoration: none;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	background-color: #2056F3;
	color: #FFFFFF;
	width: 100%;
	height: 2em;
	line-height: 2em;
	font-size: 1.5vh;
	bottom: 0;
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	transition-property: left, right;
}

.copyright a {
	color: #00E3FF;
}

.copyright a:visited {
	color: #00E3FF;
}
