:root {
	--primary-background: #e0e0e0;
	--secondary-background: #f2f2f2;

	--background-buttons: #007bff;
	/* --background-buttons: #738ffe; */
	/* --background-buttons-hover: #3b50ce; */
	--background-buttons-hover: #0056b3;
}

*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

@font-face{
	font-family: Century;
	src: url("../fuentes/CENTURY.TTF");
}

@font-face{
	font-family: Inter;
	src: url("../fuentes/Inter-VariableFont_slnt,wght.ttf");
}

@font-face{
	font-family: TCCEB;
	src: url("../fuentes/TCCEB.TTF");
}

body, html{
	background-color: var(--primary-background);
	height: 100%;
}

.error{
	color: #DE0006;
}

.succes{
	color: #26DE00;
}