@charset "utf-8";
/* CSS Document */

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	text-align: center;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}
header {
	padding: 20px;
}

.bar {
	width: 100%;  /* Full width of the container */
	height: 10px; /* 10 pixels high */
	background-color: #e0e0e0; /* Grey color */
}		

footer {
	margin-top: 40px;
	background-color: #f4f4f4;
}
footer a {
	margin-left: 10px;
}

.about-content {
	margin-top: 20px;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 10px;
}

.about-content2 {
	padding: 10px;
	background-color: #f9f9f9;
	border-radius: 10px;
	text-align: left;
}

.image-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}

.image-item {
            text-align: center;
            max-width: 300px;
}


.image-links img {
	width: 100%;
	max-width: 300px;
	height: auto;
	border-radius: 10px;
	transition: transform 0.3s ease-in-out;
}
.image-links img:hover {
	transform: scale(1.1);
}

 .image-text {
            margin-top: 10px;
            font-size: 16px;
            color: #333;
}

@media (max-width: 768px) {
	.image-links {
		flex-direction: column;
		align-items: center;
	}
}
