body{
    direction: ltr; /* كده النصوص كلها محازاه اتجاه اليمين*/
} 


header{
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* تتحكم فى طريقه توزيع العناصر*/
    align-items: center;
}

.logo{/*الوجو جه على الشمال علشان انا حاطط الينك تحت روابط الصفحات وكمان علشان انا مستعمل خاصيه الdirection */
    color: black;
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
    font-family: sans-serif;
    display: flex;
    margin: 10px;
    padding:10px;
    cursor: default;
}
/*

.name{
    width: 40%;
    display: flex;
    justify-content:space-between;
    list-style: none;
    padding: 0px;
}


.name li{
    padding: 10px ;
    margin: 10px ;
    border-radius: 70px;
    transition: 3s; 
}

.name li:hover{
    transform: scale3d(1.2,1.2,1.2); 
    background-color: #f97316;
}

.name a{
    color:black;
    text-decoration-line:none ;
}

*/
form{
    direction: rtl; /*تحازى النص اتجاه اليمين*/
    width: 400px;
    margin: 0 auto;
    line-height: 25px;
    color:black;
}
/**/
input{
    width: 95%;
    margin: 6px ;
    padding: 5px;
    color: black;

}
/**/
label{
    color: black;
    font-size: large;
    transition: ease .7s;
}
label:hover{
    color: #f97316;
}

button{
    color: white;
    padding: 10px;
    border-radius: 70px;
    background-color: transparent;
    cursor: pointer;
    transition: 3s;
}

button:hover{
    background-color: #f97316;
}
/**/

.socialmedia{ /*الاب الخاص للينكات علشان كدا عاطينا ليه الdisplay*/
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.socialmedia img{
    width: 40px;
    height: 40px;
    transition:  0.3s ease;
}

.socialmedia img:hover{
    transform: scale(1.2);
}
/*
#your-element-selector{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}
*/


.sora{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    
    z-index: -1;
}

@media screen and (max-width:850px) and (max-height:1800px) {
    .sora{
        width: 100%;
        height:100%;
    }
}
