:root {
    --bgImage: url("../images/bg/big-market-bg.jpg");
    --bgImageSmall: url("../images/blue-background-8.png");
    --bgWorldCup: url("../images/bg/bg-qatar-world-cup-2.svg");
    --bgFallback: rgb(0, 0, 23);
    --mainText: #fff;
    --hamburger: rgb(7, 108, 175);
    /*** hamburger styles ***/
    --hbBorder: rgb(7, 108, 175);
    --hbText: #fff;
    --panelBg: rgba(1, 7, 40, 0.8);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    width: 100%;    
}

body {
    /* background-image: var(--bgImage);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover; */
    background-color: var(--bgFallback);
    color: var(--mainText);
    text-align: left;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;    
    min-width: 280px;
}

.overlay {
    /* background-image: url("../images/big-market@400x-8.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; */
    /* background-size: cover; */
    /* position: absolute;
    height: 100%;
    width: 100%; */

}
