/* 
 * This color palette was taken from https://visme.co/blog/website-color-schemes/,
 * number 12, "Striking and Simple", 
 * It's further displayed on http://www.awwwards.com/sites/we-are-bert
 *
 * #0B0C10      I use that as all around background color, almost black
 * #1F2833      I use that as background color for the main area, dark grey
 * #C5C6C7      I use that as color for unvisited and active links
 * #66FCF1      I use that as color for text
 * #45A29E      I use that as color for visited links
 */

:root {
    --default-background: #0B0C10;
    --main-background: #1F2833;
    --light: #66FCF1;
    --middle: #C5C6C7;
    --dark: #45A29E;
}
