@font-face {
	font-family: "strong";
	src: url("fonts/epminbld.ttf");
}

@font-face {
	font-family: "regular";
	src: url("fonts/epmarugo.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: "strong";
}

p {
	font-family: "regular";
}

div.title {
	line-height: 1;
}

.hrimg {
	display: inline-block;
	width: 45%;
	height: auto;
}
