
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    position: sticky;
    top: 0;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 1em 0;
    display: flex;
    z-index: 100;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ffffff
}



.school-name {
    display:inline-block;
    line-height: .5em;
    align-items: center;
}
.tetsher
{
    display:inline-block;
    line-height: .5em;
    align-items: center;
}
#site-description {
    max-width: 800px; /* تحديد عرض أقصى للعنصر */
    margin: 0 auto; /* توسيع العنصر ووضعه في المنتصف */
    text-align: center;
    font-size: 25px; /* حجم الخط */
    line-height: .5; /* المسافة بين الأسطر */
    padding: 10px; /* حاشية داخلية للعنصر */
   
}
nav {
    
    background-color: #ddd;
    padding: 1em;
}

nav ul {
    text-align: center;
padding-top: 5px;
padding-bottom: 5px;
text-decoration: none;
   
}

nav ul li {
    display: inline-block;
    text-align: center;
   
}

nav a {
    display: inline-block;
height: auto;
width: 150px;
color: #333333;
background-color: #f5f5f5;
padding: 10px;
margin: 4px;
text-align: center;
font-size: 18px;
font-weight: bold;
text-decoration: none;
border-radius: 4px;
   
}

section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 2em;
    
}
article {
display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 0 0 30%;
    height: 240px; /* تغيير القيمة حسب الحاجة */
    border: 1px solid #ddd;
    padding: 1em;
    margin-bottom: 1em;
    background-color: rgb(241, 241, 227);
}

img {
   /* max-width: 100%;
   // max-height: 100%;
    // margin-bottom: 20px;*/
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    height: 30px;
    line-height: 1px;
}