/*fonts defined*/
@font-face {
	font-family: "strong";
	src: url("fonts/EPMINBLD.TTF");
}

@font-face {
	font-family: "regular";
	src: url("fonts/EPMARUGO.TTF");
}

@font-face {
	font-family: "disco";
	src: url("fonts/SinaNovaReg-webfont.ttf");
}

/*variables defined*/
:root {
	--black: #000000;
	--white: #ffffff;
	--blue: #23daa0; /*clickable things*/
	--pink: #f34567; /*attention-desiring things*/
}

/*direct tag vestments*/
body {
	background-color: var(--black);
	color: var(--white);
	font-family: "regular";
	font-size: 18px;
	line-height: 1.6;

	/*margins*/
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
	max-width: 650px;
	padding-top: 0px;
	padding-left: 10px;
	padding-right: 10px;
}

/* h1,h2,h3,h4,h5,h6 { */
	/* font-family: "disco"; */
/* } */

.fdisco {
	font-family: "disco";
}

.fevasmall {
	font-family: "regular";
}

.fevalarge {
	font-family: "strong";
}

a {
	color: var(--blue) !important;
	text-decoration: none !important;
}

bold-p {
	color: var(--pink);
}
