/* The purpose of this file is defining global variables that are going to be used across the whole website,
like the colors and fonts */
:root {
	/* Definition of Nerdearla colors */
	/* PS: I named the colors myself, maybe their names are not exactly right */
		--nerd-yellow: #FFBA00;
		--nerd-red: #FF323C;
		--nerd-green: #00ACA8;
		--nerd-black: #000000;
		/* nerdearla secondary palette */
		--nerd-mustard: #FF9200;
		--nerd-orange: #FF2D00;
		--nerd-purple: #7A00E2;
		--nerd-blue: #236EE2;
		--nerd-lightblue: #00B6FF;
		--nerd-lightgreen: #00B253;
		--nerd-gray: #849F9D;
		--nerd-dark-blue: #34495E;
	
		--title-font: "Rift Soft", sans-serif;
		--text-font: "Roboto", sans-serif;
	}
