:root {
  --bg-color: #fff;
  --color-primary: #1a73e8;
  --color-dark: #333;  
  --color-light: #fff;  
  --font-size: 1.6rem;
  --font-color: #333333;
  --font-family-sans: -apple-system, BlinkMacSystemFont, Avenir, "Avenir Next",
    "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  --font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
  line-height: 1.25;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: var(--font-size);
  color: var(--font-color);
  font-family: "Segoe UI", "Helvetica Neue", sans-serif; /*fallback*/
  font-family: var(--font-family-sans);
  margin: 0;
  padding: 0;
}

/* colors */
.primary {color: #0d6efd !important;}
.grey {color: #999;}
.fb {color: #2d5f9a !important;}
.tw {color: #00c3f3 !important;}
.wa {color: #41c352 !important;}
.lin {color: #0e76a8 !important;}
.gm {color: #c71610 !important;}
.wht {color: #fff !important;}
.bg-blk {background-color: #000 !important;}

/* headers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 5px 0 15px;
  letter-spacing: -1px; 
  line-height: 1.2 !important;
}
h1 {
  font-size: 2em;
  font-weight: 900; 
}
h2 {
  font-size: 1.75em;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.25em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.85em;
} 

.entry-content h2 {
	border-bottom: orange 2px solid
} 
/* Links */
a { 
	color: #0066cc;
	font-weight: bold;  
	text-decoration: underline; 
} 
a:hover:not(.button) {
  opacity: 0.75;
}
.btn a { 
	color: var(--color-light) !important;
	text-decoration:none !important;
}  
.noline {text-decoration: none !important;}
.noline:hover {border-bottom: 1px solid #DDD !important;}

/* content styling */
p {
  margin-top: 0;
}
.bold {font-weight: bold;}
blockquote {
  background-color: var(--bg-secondary-color);
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--color-lightGrey);
}
dl dt {
  font-weight: bold;
}
hr {
  border: none;
  background-color: var(--color-lightGrey);
  height: 1px;
  margin: 1rem 0;
}
table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}
table.striped tr:nth-of-type(2n) {
  background-color: var(--bg-secondary-color);
}
td,
th {
  vertical-align: middle;
  padding: 1.2rem 0.4rem;
}
thead {
  border-bottom: 2px solid var(--color-lightGrey);
}
tfoot {
  border-top: 2px solid var(--color-lightGrey);
}
code,
kbd,
pre,
samp,
tt {
  font-family: var(--font-family-mono);
}
code,
kbd {
  padding: 0 0.4rem;
  font-size: 90%;
  white-space: pre-wrap;
  border-radius: 4px;
  padding: 0.2em 0.4em;
  background-color: var(--bg-secondary-color);
  color: var(--color-error);
}
pre {
  background-color: var(--bg-secondary-color);
  font-size: 1em;
  padding: 1rem;
  overflow-x: auto;
}
pre code {
  background: none;
  padding: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
img {
  max-width: 100%;
}
fieldset {
  border: 1px solid var(--color-lightGrey);
}
iframe {
  border: 0;
}

/* Elements */
.border {border: 1px solid #CCC;}

.button, .mb4wp-subscribe {
  padding: 1rem 2.5rem;
  margin: 2px;	
  color: var(--color-light) !important;
  background: var(--color-primary);
  border-radius: 4px;
  border: 1px solid transparent; 
  line-height: 1;
  text-align: center; 
  text-decoration: none; 
  display: inline-block;
  cursor: pointer;
}

.box {
	background-color: #f9f9f9;
	padding: 10px;
	border-radius: 15px;
	margin: 10px 5px;
	width: 100%;
}
.listnone {
	list-style:none;
	margin-left:-30px;
}