body {
	font-family: Arial, sans-serif;
}
header nav button {
	background-color: #444;
	color: white;
	border: none;
	padding: 0.5em 1em;
	margin: 0 0.5em;
	cursor: pointer;
}
header nav button:hover {
	background-color: #555;
}
.card.hoverCard {
	transition: transform 0.2s ease;
}
.card.hoverCard:hover {
	margin: 2px;
}
.banner {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}
.banner img.background {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	transform: scale(1.5);
}
.banner:hover img.background {
	transform: scale(1); /* Slight zoom effect */
}
.banner img.foregroundTitle {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	width: auto; /* Adjust width to maintain aspect ratio */
	height: calc(
		100% - 20px
	); /* Fit height to the height of the banner, minus margin */
	margin: 10px; /* Add margin around the image */
	object-fit: cover;
}
.banner img.foreground {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.info-box {
	padding: 2em;
	text-align: center;
}
