body{
	font-family: Segoe UI, 'Tahoma', Verdana;
	margin: 0 auto;
	padding: 5px;
	color: #eee;
	font-size: 18px;
	background-color: rgb(15, 26, 31);
}
a {
	color: #fff;
	text-decoration: none;
}
ul{	
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
}
ul li{
	transition: background 80ms ease-in;
	cursor: pointer;
	margin: 0 5px 0 0;
	padding: 6px;
	border-radius: 6px;
	border: 1px solid #444;
	width: 250px;
	margin-bottom: 5px;
}

ul li img, ul li svg{
	margin: auto;
	max-width: 250px;
}
ul li p{
	padding-top: 5px;
	font-size: 14px;
}
ul li a{
	min-height: 250px;
	display: flex;
	align-items: center
}

#border{
	width: 32px; 
	height: 32px; 
	display: inline-block; 
	border-radius: 16px;
	border: 3px solid rgb(80, 210, 193);
	cursor: pointer;
	color: rgb(80, 210, 193); 
	font-size: 32px; 
	opacity: 0.4;
	transition: opacity 180ms ease-in;
}
#backToTop{
	user-select: none;
	position: relative;
	top: -6px;
}
#border:hover{
	opacity: 1;
	transition: opacity 180ms ease-in;
}

li.selected{
	background-color: #333;
}

ul li:hover {
	transition: background 80ms ease-in;
	background-color: #333;
}

form span{
	display: block;
	text-transform: uppercase;
	font-size: 21px;
	color: #888;
}
button {
	cursor: pointer;
	border: 2px solid #444;
	border-radius: 6px;
	padding: 6px 12px;
	font-size: 32px;
	background-color: #333;
	color: #eee
}
input, select {
	width: 100%;
	font-size: 24px;
	padding: 8px 12px;
	border-radius: 6px;
	border: 1px solid #333;
	background-color: #333;
	color: #eee
}

h2{
	font-weight: normal;
	font-size: 40px;
}
hr {
	border: 1px solid #333;
}
h1 {
	font-size: 24px;
	font-weight: normal;
}
#logo {
	float: left;
	padding: 5px 5px 0 0;
	width: 25px;
	height: 25px;
}
.tags {
	border-top: 1px solid #444;
	padding-top: 10px;
	margin-top: 15px;
	margin-bottom: 5px;
	display: block;
}
.tags span, #categories span{
	border-radius: 8px;
	padding: 6px;
	text-transform: uppercase;
	font-size: 10px;
	color: #111;
	margin: 0 3px 0 0;
	background-color: rgb(80, 210, 193);
}
#categories{
	line-height: 30px;
}
#categories span{
	cursor: pointer;
}
span.title{
	width: 100%;
	display: block;
	font-size: 13px;
	text-align: center;
	
	padding-bottom: 2px;
	margin-bottom: 5px;
}
#categories span.selected{
	background-color: #fff;
}
@media (max-width: 564px) {
	ul li{
		width: 100%;
	}
}

#footer{
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
}

.hidden{ display: none }
.visible { display: block; animation: fadeIn 0.5s }
@keyframes fadeIn {
  from {
	  opacity: 0;
  }

  to {
	  opacity: 1;
  }
}