* {
	font-family: Arial, Helvetica, sans-serif;
	padding: 0px;
	margin: 0px;
}

body {
	backdrop-filter: blur(8px);
	background-image: url("https://cdn12.picryl.com/photo/2016/12/31/seaside-stormy-sky-sea-travel-vacation-90d591-1024.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	min-height: 100vh;
	color: white;
}

header {
	text-align: center;
	padding: 40px 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
}
header h1 {
	font-size: 3em;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

main {
	padding: 40px 20px;
}

.programs {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	border-radius: 15px;
	padding: 30px;
	margin: 40px auto;
	max-width: 1200px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.programs h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 2em;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.program {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.card,
.about {
	margin-left: 10px;
	margin-right: 10px;
	display: flex;
	flex-direction: column;
	margin-top: 20px;
	align-items: center;
	background: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 20px;
	min-width: 120px;
	transition: transform 0.3s, background 0.3s;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.2);
}

.card h3,
p {
	margin-bottom: 15px;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.205);
}

.card img {
	height: 60px;
	width: 60px;
	object-fit: contain;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

footer {
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	padding: 30px 0;
	margin-top: 40px;
}

footer ul {
	display: flex;
	justify-content: space-evenly;
	list-style: none;
	text-align: center;
}

footer li {
	margin: 10px 0;
	font-size: 1.1em;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
a {
	color: white;
}

@media (max-width: 768px) {
	.program {
		margin-left: 5%;
		margin-right: 5%;
	}

	.card {
		margin-left: 10px;
		margin-right: 10px;
		min-width: 100px;
	}

	header h1 {
		font-size: 2em;
	}
}
