body {
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.45)), url('../images/bg.webp');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	position: relative;
}

.navbar {
	position: relative;
	z-index: 1000;
	margin: 10px;
	border-radius: 5px;
}

.card {
	/* Add a light background to cards for readability */
	background-color: rgba(255, 255, 255, 0.8);
	transition: transform 0.2s;
}

.card:hover {
	transform: scale(1.05);
}

.card a {
	color: inherit;
	text-decoration: none;
}

.card-title {
	/* Adjusting the title size for better visibility */
	font-size: 1.25rem;
}