@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/*===========[BASE]===========*/
*{
    font-family: 'Poppins', 'sans-serif';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*===========[ALAP KINÉZET]===========*/
:root{
    --body-color: #006c97;
    --sidebar-color: #285565;
    --primary-color: #252525;
    --primary-color-light: #252525;
    --toggle-color: #333333;
    --text-color: #ffffff;
    --keres-color: #252525;

    --tran-02: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.4s ease;
    --tran-05: all 0.5s ease;

    --icon-color: #000000;
    --icon-color-revise: #FFF;
}
/*===========[SÖTÉT KINÉZET]===========*/
body.dark{
    --body-color: #003140;
    --sidebar-color: #000000;
    --primary-color: #ffffff;
    --primary-color-light: #333333;
    --toggle-color: #ffffff;
    --text-color: #ffffff;
    --keres-color: #333333;
    --icon-color: #FFF;
    --icon-color-revise:#000;
}