:root {
  --main-color:#ea9000;
  --second-color:#cc6600;
  --contrast-color:#2C3E50;
  --font-family: Arial, Helvetica, sans-serif;
}

* {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}
	
body, html {
	height: 100%;
	width: 100%;
	
  	font-family: var(--font-family);
  	display: flex;
  	flex-direction: column;
  	min-height: 100%; /* this helps with the sticky footer */
}

.bg-primary {
  	background-color: var(--main-color) !important;
}

.bg-secondary {
  	background-color: var(--contrast-color) !important;
}

.footer {
  	padding-top: 1rem;
  	padding-bottom: 1rem;
  	background-color: #1a252f;
  	color: white;
  	flex-shrink: 0;
}

.page_link {
	font-size: 1.5rem;
}

.header_bg_color  {
	background-color: #F7F7F7;
}

.dotted_line {
	border-top: 1px;
	border-style: dashed solid;
	
}

.comment-user-info {
	font-size: 0.8rem;
}