@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;600;700&family=Barlow:wght@300;700&display=swap');
/****************************************/
/************ PROGRAM GUIDE *************/
/****************************************/

:root{
	--darkblue: #242433;
	--white: #ffffff !important;
}

body{
	font-family: 'Barlow', sans-serif;
	background-color:var(--darkblue);
	color:var(--white);
}

.text-thin{
	font-family: 'Barlow Condensed', sans-serif;
}

img.avatar{
	height:40px;
	border-radius:10%;
}

/*.blogbody img{
	width:100%;
	border-radius:5%;
}*/

@media (prefers-color-scheme: dark) {

}

/* ---- button ---- */

.button {
	display: inline-block;
  	padding: 10px 18px;
  	margin-bottom: 10px;
  	background: #EEE;
 	border: none;
 	border-radius: 7px;
	
  background-image: -webkit-linear-gradient(hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.2));
  background-image: -o-linear-gradient(hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.2));
  background-image: linear-gradient(hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.2));
  
  	color: #222;
  	font-family: sans-serif;
  	font-size: 16px;
  	text-shadow: 0 1px white;
  	cursor: pointer;
}

.button:hover {
  	background-color: #8CF;
  	text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
  	color: #222;
}

.button:active,
.button.is-checked {
  	background-color: #28F;
}

.button.is-checked {
  	color: white;
  	text-shadow: 0 -1px hsla(0, 0%, 0%, 0.8);
}

.button:active {
  	box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}

/* ---- button-group ---- */

.button-group:after {
  	content: '';
  	display: block;
  	clear: both;
}

.button-group .button {
  	/*float: left;*/
  	border-radius: 0;
  	/*margin-left: 0;*/
  	margin-right: -1px;
}

.button-group .button:first-child { border-radius: 0.5em 0 0 0.5em; }
.button-group .button:last-child { border-radius: 0 0.5em 0.5em 0; }

/* ---- isotope ---- */

.grid {
  	/*border: 1px solid #333;*/
}

/* clear fix */
.grid:after {
  	content: '';
  	display: block;
  	clear: both;
}

/* ---- .element-item ---- */

.presentation-item {
  	position: relative;
  	float: left;
  	/*width: 100px;
  	height: 100px;
  	margin: 5px;
  	padding: 10px;
  	background: #888;
  	color: #262524;*/
}

.presentation-item > * {
  	margin: 0;
  	padding: 0;
}

/*
.presentation-item .name {
  	position: absolute;
  	left: 10px;
  	top: 60px;
  	text-transform: none;
  	letter-spacing: 0;
  	font-size: 12px;
  	font-weight: normal;
}

.presentation-item .symbol {
  	position: absolute;
  	left: 10px;
  	top: 0px;
  	font-size: 42px;
  	font-weight: bold;
  	color: white;
}

.presentation-item .number {
  	position: absolute;
  	right: 8px;
  	top: 5px;
}

.presentation-item .weight {
  	position: absolute;
  	left: 10px;
  	top: 76px;
  	font-size: 12px;
}
*/

.presentation-item.alkali          { background: #F00; background: hsl(   0, 100%, 50%); }
.presentation-item.alkaline-earth  { background: #F80; background: hsl(  36, 100%, 50%); }
.presentation-item.lanthanoid      { background: #FF0; background: hsl(  72, 100%, 50%); }
.presentation-item.actinoid        { background: #0F0; background: hsl( 108, 100%, 50%); }
.presentation-item.transition      { background: #0F8; background: hsl( 144, 100%, 50%); }
.presentation-item.post-transition { background: #0FF; background: hsl( 180, 100%, 50%); }
.presentation-item.metalloid       { background: #08F; background: hsl( 216, 100%, 50%); }
.presentation-item.diatomic        { background: #00F; background: hsl( 252, 100%, 50%); }
.presentation-item.halogen         { background: #F0F; background: hsl( 288, 100%, 50%); }
.presentation-item.noble-gas       { background: #F08; background: hsl( 324, 100%, 50%); }