@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;

}

body {
    overflow-x: auto;
    overflow-y: scroll;
    background-color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px; 
}

:root {
    --general-font: 'Montserrat', sans-serif;;
    --title-font: 'Open Sans';

    --bg-color-dark: #1b1b1b;
    --bg-color-light: #ecf0f1;

    --accent-color: #038FCF;
    --accent-color-h: #0380b9;
    --acentt-color-i:#009fe3;
}


