@import url("https://fonts.googleapis.com/css?family=Open+Sans");

body {
	background-color: #0093E9;
	background-image: linear-gradient(160deg, #0093E9 0, #80d0c7 100%);
	font-family: "open sans", sans-serif;
	padding: 15px 20px 15px 20px;
}

body::-webkit-scrollbar-track {
	background-color: #f5f5f5;
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar {
	background-color: #F5F5F5;
	width: 12px;
}

body::-webkit-scrollbar-thumb {
	background-image: linear-gradient(160deg, #0093E9 0, #80D0C7 100%);
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0 , 0, 0.3);
}

div#body {
	display: none;
}

div#categories {
	border-bottom: 1px solid #4978A0;
	padding: 0 0 10px 0;
	width: 100%;
}

div#categories a {
	color: #000000;
	display: inline-block;
	font-size: 24px;
	font-weight: bold;
	margin: 0 50px 0 0;
	text-decoration: none;
}

div#categories a:hover {
	color: #FFFFFF;
}

div.container {
	box-sizing: border-box;
	display: inline-block;
	margin: 20px 0 0 0;
	width: 100%;
}

div.container div.items {
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 0 0 7.5px 7.5px;
	padding: 10px 10px 10px 10px;
}

div.container div.items div.bookmark {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 25%;
}

div.container div.items div.bookmark:hover {
	cursor: pointer;
}

div.container div.items div.bookmark:hover > img {
	scale: 1.10;
}

div.container div.items div.bookmark:hover > p {
	text-decoration: underline;
}

div.container div.items div.bookmark img {
	transition: all 0.25s ease-in-out;
	width: 70%;
}

div.container div.items div.bookmark p {
	color: #000000;
	font-size: 12px;
	height: 36px;
	line-height: 14px;
	margin: 5px auto 0 auto;
	text-decoration: none;
	width: 85%;
}

div.container div.header {
	background: linear-gradient(to bottom, #F8B500, #F7CE68);
	border-radius: 7.5px 7.5px 0 0;
	font-size: 18px;
	font-weight: bold;
	padding: 10px 20px 10px 20px;
}

div#grid {
	column-count: 5;
	column-gap: 20px;
	width: 100%;
}

div#preloader {
	background-color: rgba(0, 0, 0, 0.85);
	display: flex;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
}

div#preloader img {
	display: block;
	height: 128px;
	margin: auto;
}