body
{
    margin: 0px;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
header
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cover
{
    width: 100%;
}
.logo
{
    width: 100px;
    height: 100px;
    position: absolute;
    top: 14%;
    background-color: rgb(188, 202, 183);
    border-radius: 50%;
    border: 13px solid rgb(188, 202, 183);
    z-index: 1000;
}
/* body div */
.body {
    background-color: rgb(188, 202, 183);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content:start;
    align-items: center;
    position: absolute;
    padding-bottom: 10%;
    top: 18%; /* تعديل الموضع ليتناسب مع التصميم */
    border-top-left-radius:  50% 7% ; /* إنشاء قوس غير منتظم */
    border-top-right-radius: 50% 7%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* إضافة ظل لتحسين الشكل */
    overflow: hidden; /* في حال وجود عناصر زائدة */
}
/* name and jobtitle div */
.name-and-jobtitle{
    display: flex;
    
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    margin-top: 20%;
}
.name-and-jobtitle h1{
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: black;
    margin-bottom: 5px;
}
.name-and-jobtitle p{
    font-size: 12px;
    font-weight: 600;
    color: black;
    margin-top: 5px;
    font-family: 'Raleway', sans-serif;
}
/* social-media */
.social-media
{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 70%;
    margin-top: 8%;
    margin-bottom: 8%;
}
.social-media a{
    width: 11%;
}
.social-media img{
    width: 100%;
}
/* informations */ 
.informations{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80%;
    font-family: 'Cairo', sans-serif;
    border-top: 1px solid black;
    direction: rtl;
    border-bottom: 1px solid black;
}
/* our-servercies */
.our-servercies{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 10%;
}
.our-servercies a{
    text-decoration: none;
    color: black;
    font-weight: 600;
    background-color: white;
    padding: 10px;
    width: 250px;
    text-align: center;
    margin-bottom: 8%;
    font-family: 'Cairo', sans-serif;
}
/* Footer */
footer
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10%;
}
footer p
{
    text-align: center;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 0%;
    color: rgb(151, 165, 146);
    
}
footer a{
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 2%;
    font-size: 20px;
    text-align: center;
    align-items: baseline;
    font-weight: 600;
}
footer a img{
    text-decoration: none;
    width: 3%;
}
.tarekbenjehad{
    width: 40px;
}