body {
	position: relative;
	background-image: url("76.jpg");
	background-size: cover;
	background-position: center;
}

body::before {
	content: "";
	position: fixed; /* تغطية الشاشة بالكامل */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4); /* تعديل شفافية التغميق */
	z-index: -1; /* إبقاء الخلفية تحت المحتوى */
}

.center {
	display: flex;
	flex-direction: column; /* يجعل العناصر تتكدس عمودياً */
	justify-content: center; /* توسيط رأسي */
	align-items: center; /* توسيط أفقي */
	text-align: center; /* جعل النص في المنتصف */
	font-family: "Tajawal", serif;
	margin-top: 30px;
	color: #ffffff;
	line-height: 10px;
}
.container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 90px;
}

.logo-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1200px; /* تحديد حد أقصى للعرض */
}

.logo-container img {
	width: 20%; /* تحكم في حجم اللوجوهات حسب الحاجة */
}

.center h1 {
	line-height: 10px;
}
a {
	text-decoration: none; /* إزالة التسطير */
	color: inherit; /* استخدام لون النص العادي بدلاً من اللون الأزرق */
}

a:hover {
	color: #2d358e; /* تغيير لون النص عند تحويل المؤشر إليه */
}

.info {
	margin: 9px 0; /* تقليل المسافة العلوية والسفلية */
}
