body {
	margin: 0;
	padding: 0;
	background-image: url("kodalb_logo_bg.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	min-height: 100vh;
	font-family: "EB Garamond", "Times New Roman", Times, serif;
}

header {
	text-align: center;
}

#logo {
	width: 384px;
	height: 256px;
	margin-top: -15px;
	padding: 0;
}

h1 {
	margin: -40px 30% 80px;
	padding: 20px 0 0;
	color: white;
	text-shadow: -3px 3px 2px black;
	border-top: 3px solid white;
}

#cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
	max-width: 1200px;
	margin: -15px auto 0 auto;
	padding: 20px;
}

.card {
	background-color: #324770;
	border: 5px solid #11b2b5;
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	padding: 0 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	height: 100%;
	min-height: 200px;
	box-sizing: border-box;
	color: white;
	text-align: center;
}

.card h2 {
	margin-top: 20;
	margin-bottom: 15px;
	font-size: 1.6rem;
	min-height: 4.5rem;
	border-bottom: 3px solid white;
	text-shadow: -2px 2px 2px black;
}

.card p {
	margin-bottom: 0;
	flex-grow: 1;
	margin-bottom: 20px;
	font-size: 1.3rem;
	font-weight: 300;
	text-shadow: -2px 2px 2px black;
}

@media (max-width: 768px) {
	h1 {
		margin-left: 10%;
		margin-right: 10%;
	}

	#cards {
		grid-template-columns: 1fr;
	}

	.card h2 {
		min-height: 3rem;
	}
}

footer {
	background-color: #f8f9fa;
	padding: 20px 0;
	margin-top: 40px;
	border-top: 1px solid #e0e0e0;

	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	transition: all 0.3s ease;
}

.social-link:hover {
	color: #0066cc;
	transform: translateY(-2px);
}

.social-link img {
	height: 24px;
	width: 24px;
	object-fit: contain;
}
