html {
			background-image: url(img/bg3.png);
			background-size: 800px;
			animation: moveIt 90s linear infinite;
			background-attachment: fixed;
}

@keyframes moveIt {
 			from {background-position: left;}
  			to {background-position: right;}		
}

h1 {
	font-family: 'Copperplate Gothic';
	margin: 0;
	padding: 0;
	font-size: 46px;
	font-weight: normal;
	line-height: 42px;
	color: #969985;
}

h2 {
	font-family: 'Copperplate Gothic';
	color: #969985;
	font-size: 20px;
	margin-left: 20px;
	font-weight: normal;

}

body {
	font-family: 'Gill Sans';
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: normal;
	line-height: 30px;

	color: #969985;
}

li {
	display: inline-block;
}

.left_square_bg {
	width: 300px;
	height: 560px;
	background: #2E252B;
	position: absolute;
	left: 50px;
	top: 160px;
	padding: 20px;
	border: 1px solid #7D8071;
	opacity: 0.7;
}
.left_square {
	width: 300px;
	height: 560px;
	position: absolute;
	left: 50px;
	top: 160px;
	padding: 20px;
	border: 1px solid #7D8071;
}


.titlesquare_bg {
	width: 600px;
	height: 70px;
	background: #2E252B;
	position: absolute;
	left: 0px;
	top: 30px;
	opacity: 0.7;
}

.title_square {
	width: 600px;
	height: 70px;
	position: absolute;
	left: 0px;
	top: 30px;
	border: 1px solid #7D8071;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom_border {
	width: 99.9%;
	height: 50px;
	background: #2E252B;
	position: absolute;
	z-index: 2;
	bottom: 0px;
	left: 0px;
	border: 1px solid #7D8071;
	background-image: url(./img/banner3b.png);
	background-size: 40%;
	background-position: right;
}

.right_border {
	width: 50px;
	height: 99.8%;
	background: #2E252B;
	position: absolute;
	right: 0px;
	top: 0px;
	border: 1px solid #7D8071;
	/*opacity: 0.7;*/
}

.divider {
	width: 1200px;
	height: 40px;
	background: #2E252B;
	border: 1px solid #7D8071;
	margin: 20px 0;
	position: relative;
	left: 200px;
	display: flex;
    justify-content: left;
    align-items: center;
}

.interactive-element {
	transition: transform 0.2s ease-out;
	/* Ensure smooth transitions for all properties */
	will-change: transform;
}

.interactive-element:hover {
	transform: scale(1.05);
}

.interactive-bookmark {
	transition: transform 0.2s ease-out;
	/* Ensure smooth transitions for all properties */
	will-change: transform;
}

.interactive-bookmark:hover {
	transform: translateY(10px);
}

.interactive-banner {
	transition: transform 0.2s ease-out;
	/* Ensure smooth transitions for all properties */
	will-change: transform;
}

.interactive-banner:hover {
	transform: translateX(-10px);
}

/*lightbox*/
#lightbox {
	position: fixed;
	z-index: 1000;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
}

#lightbox.active {
	display: flex;
	justify-content: center;
	align-items: center;
}

#lightbox img {
	max-width: 90%;
	max-height: 80%;
	padding: 4px;
	background-color: black;
	border: 2px solid #969985;

}

/*Gallery Grid*/

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8em, 1fr));
  gap: 1em;
  padding: 1em;
  width: 70%;
  margin: 0 auto;
  cursor: pointer;
  /*background: white;*/
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.5em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}