/* Explain: Base reset and typography defaults for the 'عالم وافي' site. - */
* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top right, rgba(37, 211, 102, 0.12), transparent 35%),
        linear-gradient(135deg, #f9fafb 0%, #eef3f8 100%);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--primary-color);
    color: #ffffff;
}