* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:hover {
    outline: none;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    font-family: var(--y-font-family-Cairo);
    line-height: 1.6;
    color: var(--y-color-primary-text);
    background-image: url('/assets/bg.png');
    background-size: cover;
    background-position: center;
    direction: rtl;
    text-align: right;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}
@media (max-width: 768px) {
    body {
            background-image: url('/assets/bg-mobile.png');
    }
}