body{
    direction: rtl;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#space{
    margin: 0 20px;
}

.header{
    position: fixed;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;


    background: linear-gradient(to right bottom, #5D02D7, #09B3FF);
}
.menu{
    width: 25px;
    margin: 20px;
    text-decoration: none;
    list-style: none;
    cursor: pointer;
}
.menu li{
    margin: 5px;
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    height: 3px;
    width: 100%;
}

.menu #secend{
    width: 80%;
}

.title{
    height:calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.title h1{
    font-size: 50px;
    font-weight: bold;
    background: linear-gradient(to right bottom, #5D02D7, #09B3FF); /* التدرج */
    -webkit-background-clip: text; /* اقتص التدرج على النص */
    -webkit-text-fill-color: transparent; /* اجعل النص شفافًا ليظهر التدرج */
    margin: 0;
}
.title p{
    color: rgb(26, 26, 26);
    font-size: 20px;
    font-weight: bold;
}
.title a{
    text-decoration: none;
    color: white;
}
.title a button {
    font-size: 20px;
    padding: 10px;
    background: linear-gradient(to right bottom, #5D02D7, #09B3FF);
    color: white;
    border: none;
    border-radius: 13px;
    width: 200px;
    height: 45px;
    transition: 0.3s;
    cursor: pointer;
    margin-top: 10px;
}

.title button:hover{
    opacity: 0.8;
}
