body {
    font-family: Arial, sans-serif;
    background-image: url('1D8D4FB8-C30B-4FB5-86FD-F80C75E646AB.gif'); /* خلفية متحركة */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column; /* تفعيل الترتيب العمودي */
}

header {
    background-color: rgba(0, 0, 0, 0.5); /* خلفية شبه شفافة */
    color: #fff;
    padding: 20px;
    text-align: center;
}

.F5M {
    max-width: 150px; /* أقصى عرض للشعار */
    height: auto;
    margin-bottom: 10px;
}

main {
    flex: 1; /* يجعل المحتوى يتوسع لملء المساحة المتاحة */
    display: flex;
    flex-direction: column; /* ترتيب العناصر عمودياً */
    align-items: center; /* توسيط العناصر أفقياً */
    justify-content: center; /* توسيط العناصر عمودياً */
    text-align: center; /* توسيط النصوص */
    position: relative; /* لتحديد موقع الشعار بشكل دقيق */
}

.center-logo {
    position: absolute; /* لتحديد موقع الشعار بدقة */
    top: 20px; /* المسافة من أعلى الصفحة */
    left: 50%; /* توسيط الشعار أفقياً */
    transform: translateX(-50%); /* توسيط الشعار بدقة */
    margin-bottom: 20px; /* المسافة تحت الشعار */
}

.logo-img {
    max-width: 300px; /* أقصى عرض للشعار */
    height: auto; /* الحفاظ على نسبة العرض إلى الارتفاع */
}

footer {
    background-color: rgba(0, 0, 0, 0.5); /* خلفية شبه شفافة */
    color: #fff;
    padding: 10px;
    text-align: center;
}

button, a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5b068a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
}

button:hover, a.button:hover {
    background-color: #5b068a;
}

.custom-header {
    color: #ffffff; /* تغيير لون النص */
}
