﻿@import url(https://fonts.googleapis.com/css?family=Ubuntu);

@font-face {
	font-family: cg;
	src: url(fonts/cg.otf);
}

@keyframes blurhigh {
	from {
		-webkit-filter: blur(5px);
		-moz-filter: blur(5px);
		-o-filter: blur(5px);
		-ms-filter: blur(5px);
		filter: blur(5px);
	}

	to {
		-webkit-filter: blur(0);
		-moz-filter: blur(0);
		-o-filter: blur(0);
		-ms-filter: blur(0);
		filter: blur(0);
	}
}

body {
	background: #000000;
	background: -webkit-linear-gradient(to left, #000000, #434343);
	background: linear-gradient(to left, #000000, #434343);
	overflow-y: scroll;
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

hr {
	border: 0;
	height: 2px;
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

#content {
	max-width: 1000px;
	margin: auto;
	background-color: #EEE;
}

#header {
	width: 100%;
	height: 350px;
	background-image: url(img/header.png);
}

#menu {
	/*
	background: #4CA1AF;
	background: -webkit-linear-gradient(to left, #4CA1AF , #C4E0E5);
	background: linear-gradient(to left, #4CA1AF , #C4E0E5);
	---
	background: #457fca;
	background: -webkit-linear-gradient(to left, #457fca , #5691c8);
	background: linear-gradient(to left, #457fca , #5691c8);
	--
	background-color: #D2D7D3;*/
	background-color: #CF000F;
	height: 50px;
	width: 100%;
	line-height: 50px;
	text-align: center;
}

#menu a {
	text-decoration: none;
	color: #000;
	margin-left: 10px;
	margin-right: 10px;
	font-size: 130%;
	font-family: Ubuntu;
}

#menu a:hover {
	color: #ECECEC;
}

#menu .active {
	color: #ECECEC;
}

#title {
	position: absolute;
	margin: 1em;
	/* z-index: 1;
	top: 5px;
	left: 5px;
	font-family: cg; */
}

#title img {
	height: 75px;
}

#pcont {
	width: 100%;
	padding: 1em;
}

#pcont h2 {
	margin-bottom: 0.6em;
}

#pcont h3 {
	margin-bottom: 0.6em;
}

.imidz {
	transition: 250ms;
}

.imidz:hover {
	box-shadow: 2px 3px 20px #000;
}

h3 {
	margin: 5px 0;
	padding: 0;
}

.subimg {
	max-height: 10em;
	margin: 5px;
	/*transition: 250ms;*/
}

.subimg:hover {
	box-shadow: 0 0 5px #000;
}

#isb {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	opacity: 0.75;
}

#isi {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 80%;
	max-height: 90%;
}

#isc {
	display: none;
	position: fixed;
	top: 0;
	right: 5px;
	opacity: 0.5;
	transition: 250ms;
	font-family: cg;
	font-size: 30px;
	color: white;
	cursor: pointer;
}

#isc:hover {
	opacity: 1;
}

#isl {
	display: none;
	font-family: MS Sans Serif, Geneva, sans-serif;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: lightgray;
}

#isl img {
	animation-duration: 2s;
	animation-name: blurhigh;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}