.container {
    text-align: center;
    background-color: #000819; /* استبدال صورة الخلفية باللون */
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: #C0C0C0;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
}

.card h2 {
    color: #a6872d; /* لون العنوان */
}

.card p {
    color: #000; /* لون النص */
    font-weight: bold; /* جعل النص عريضاً */
    font-size: 1.1em; /* زيادة حجم النص قليلاً لتحسين الوضوح */
}


.card a {
    color: #ffffff; /* لون النص داخل الزر */
    background-color: #444; /* لون الخلفية الذهبي */
    text-decoration: none; /* إزالة الخط السفلي */
    padding: 10px 20px; /* إضافة مساحة داخل الزر */
    display: inline-block; /* جعل الرابط يظهر كزر */
    border-radius: 5px; /* جعل الزوايا مستديرة */
    transition: background-color 0.3s ease; /* إضافة تأثير التحويل عند التمرير */
}

/* عند التمرير على الزر، يتغير لون الخلفية */
.card a:hover {
    background-color: #8e6e1a; /* لون أغمق عند التمرير */
}
