header {
	color: white;
	padding: 20px;
	/* display: flex; */
	/* flex-wrap: wrap; */
	/* justify-content: space-between; */
	align-items: center;
	/* background-image: url('/images/background.png'); */
	background-color:#c65656;
	background-attachment:fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Main Content */
main {
	padding: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.intro {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	flex-wrap: wrap;
}

.intro-text {
	flex: 2 1 400px;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.intro-text h1 {
	font-size: 24px;
	margin-bottom: 20px;
}

.video {
	flex: 1 1 300px;
	max-width: 100%;
}

.video iframe {
	width: 100%;
	height: 280px;
	border: none;
	border-radius: 8px;
}

.play-button {
	font-family: 'CC Up Up And Away', Arial;
	text-align: center;
	margin: 40px 0;
}

.play-button a {
	text-decoration: none;
	font-size: 44px;
	color: #c94f4f;
	font-weight: bold;
}

.play-button a:hover {
	text-decoration: underline;
}

.articles {
	margin-top: 40px;
}

.articles h3 {
	font-family: 'CC Up Up And Away', Arial;
	font-size: 24px;
	margin-bottom: 20px;
}

.article-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.article {
	background-color: white;
	flex: 1 1 300px;
	padding: 20px;
	text-align: center;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article img {
	width: 100%;
	height: 100px;
	background-color: black;
	margin-bottom: 10px;
}

.article h4 {
	font-size: 18px;
	margin-bottom: 10px;
}

.article p {
	font-size: 14px;
	color: #666;
}


/* Responsive Design */
@media (max-width: 768px) {
	.intro {
		/* flex-direction: column; */
	}

	.intro-text {
		margin-bottom: 20px;
	}

	.play-button a {
		font-size: 20px;
	}

	.article-list {
		flex-direction: column;
		gap: 20px;
	}

	.article {
		flex: 1 1 100%;
	}
}

@media (max-width: 480px) {
	.play-button a {
		font-size: 18px;
	}

	.intro-text h2 {
		font-size: 20px;
	}

	.articles h3 {
		font-size: 20px;
	}

	.article h4 {
		font-size: 16px;
	}
}