.centered-header-section{
	min-height: calc(100vh - 100px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 6rem 1rem 0;
}
.centered-header-section-contents{
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}

.centered-header-section-contents h1{
	font-size: 4rem;
}
@media (max-width: 1400px) {
	.centered-header-section-contents h1{
		font-size: 3rem;
	}
}

.centered-header-cards {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 4rem;
	flex-wrap: wrap;
	max-width: 2340px;
}
@media (max-width: 768px) {
	.centered-header-cards {
		max-width: 580px;
	}
}

.card-link {
	text-decoration: none;
	color: inherit;
	display: block;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 1rem;
	flex: 1 1 100%;
}

@media (min-width: 768px) {
	.card-link {
		flex-basis: 45%;
	}
}

@media (min-width: 1400px) {
	.card-link {
		flex-basis: 22%;
	}
}

.card-link:hover {
	transform: scale(1.05);
	box-shadow: 0 0 30px rgba(59, 130, 246, 0.7);
}

.card-link .card {
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid var(--color-dark-blue-border);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	background-color: var(--color-dark-blue-background);
	color: white;
	height: 100%;
}

.card-img-container {
	position: relative;
}

.card-link .card-img-top {
	max-height: 200px;
	width: 100%;
	object-fit: cover;
	display: block;
}

.card-link .card-title {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	color: white;
	font-weight: bold;
	margin: 0;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
	font-size: 1.6rem;
	text-shadow: 
		0 0 5px #000,
		0 0 10px #000,
		2px 2px 0 #000;
}

.card-link .card-body {
	color: white;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.card-link .card-title span{
	color: rgb(60, 131, 246);
	display: block;
	font-size: 1rem;
	margin: 0 0 0.5rem;
}

.card-footer-link{
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	color: rgb(60, 131, 246);
	align-items: center;
	justify-content: left;
}

@media (min-width: 1400px) {
	#about {
		margin-top: -100px;
	}
}

.card-link .card-img-top-2 {
	max-height: 300px;
	width: 100%;
	object-fit: cover;
	display: block;
}
