/* 
USED COLORS

Bright colors:
#ffffff - white
#ffe600 - yellow
#FFD700 - another yellow
#ffcc00 - another yellow
#bdbaba - light grey

Dark colors:
#333333 - dark grey
#2B2B2B - even darker grey
#1E1E1E - even darker grey
 */


:root {
    --white: #ffffff;
    --yellow: #ffe600;
    --another-yellow: #FFD700;
    --another-yellow2: #ffcc00;
    --light-grey: #bdbaba;
    --dark-grey: #333333;
    --even-darker-grey: #2B2B2B;
    --even-darker-grey2: #1E1E1E;
}
