@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --dark-bg: #000000;
    --white-bg: #ffffff;
    --text-dark: #333333;
    --text-light: #ffffff;
    --green-color: #48e223;
    --width-50: 50%;
    --height-100vh: 100vh;

}

* {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style: none;
    /* overflow-x: hidden; */
}