.banner	{
	width: 100%;
	text-align: center;
	position: relative;
	padding: 20px 0;
}
.logo	{
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	height: 80px;
	border: solid 1px blue;
}
.divider	{
	width: 90%;
	border: none;
	border-top: 2px solid;
	margin: 10px auto;
	position: relative;
	top: -15px;
	color: red;
}
.nav-links	{
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 10px;
}
.nav-links a	{
	text-decoration: none;
	color: #333;
	font-weight: bold;
	font-size: 1.1em;
	position: relative;
	transition: color 0.3s;
	color: red;
}
.nav-links a::after	{
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0%;
	height: 2px;
	background: #1976d2;
	transition: width 0.3s;
}
.nav-links a:hover {
	color: blue;
	font-style: italic;
	}
.nav-links a:hover::after {
	width: 100%;
}
h1.heading	{
	color: blue;
	font-style: italic;
}
body	{
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100vh;
}
.photo-section	{
	width: 90%;
	flex: 1; 
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border: 2px solid blue;
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
	display: block;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}
.photo-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.footer	{
	width: 100%;
	height:10vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f2f2f23;
	color: #333;
	font-size: 0.9em;
	text-align: center;
	padding: 10px 0;
}
.photo-wrapper	{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.photo-wrapper > img.main-photo	{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
	
.last-updated	{
	position: absolute;
	top: 8px;
	right: 12px;
	font-size: 0.8em;
	font-style: italic;
	color: black;
	background: rgba(255,2565,255,0.6);
	padding: 2px 6px;
	border-radius: 4px;
}
.vertical-images, horizontal-images	{
	position: absolute;
	display: flex;
	gap: 10px;
	z-index: 2;
}
.vertical-images	{
	flex-direction: column;
	top: 10%;
	left: 20px;
}
.horizontal-images 	{
	flex-direction: row;
	bottom: 20px;
	right: 20px;
}
.photo-wrapper .small-photo	{
	width: 100px;
	height: 100px;
	object-fit: cover;
	border: 1px solid blue;
	box-shadow: 0 0 6px rgba(0,0,0,0.4);
	border-radius: 5px;
}
.small-photo	{
	width: 100px;
	height: 100px;
	object-fit: cover;
	border: 1px solid blue;
	box-shadow: 0 0 6px rgba(0,0,0,0.4);
	border-radius: 5px;
}
.medium	{
	width: 150px;
	height: 150px;
	object-fit: cover;
	border: 1px solid blue;
	box-shadow: 0 0 6px rgba(0,0,0,0.4);
	border-radius: 5px;
}
.main-photo	{
	width: 100%;
	height: 100%;
}



	




	


