html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

body {
	background-color: #f2f2f2;
}

header {
	width: 100%;
	background-color: #77cdb4;
	text-align: center;
	box-shadow: 0px 0px 9px -1px black;
}
#pageFooter {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 25px;
	background-color: #77cdb4;
	font-family: 'Amiri';
	box-shadow: 0px 0px 9px -1px black;
	clear: both;
}
title {
	display: contents;
    text-shadow: 2px 2px 3px rgb(23 23 23 / 53%);
}
h1 {
	font-family: 'Amiri', serif;
	color: #FFF;
	font-size: 2.3em;
}

em {
	color: #607d8b;
}

.wrapper {
	width: 60vw;
	margin: 40px auto;
}

div.gallery {
	margin-top: 30px;
}

div.gallery ul {
	list-style-type: none;
	margin-left: 35px;
}

/* animation */
div.gallery ul li, div.gallery li img {
	-webkit-transition: all 0.1s ease-in-out;
  	-moz-transition: all 0.1s ease-in-out;
  	-o-transition: all 0.1s ease-in-out;
  	transition: all 0.1s ease-in-out;
}

div.gallery ul li {
	position: relative;
	float: left;
	width: 130px;
	height: 130px;
	margin: 5px;
	padding: 5px;
	z-index: 0;
}

/* Make sure z-index is higher on hover */
/* Ensure that hover image overlapped the others */
div.gallery ul li:hover {
	z-index: 5;
}

/* Image is position nicely under li */
div.gallery ul li img {
	position: absolute;
	left: 0;
	top: 0;
	border: 1px solid #dddddd;
	padding: 5px;
	/* width: 130px; */
	height: 130px;
	background: #f0f0f0;
	box-shadow: 2px 2px 9px -1px black;
}

div.gallery ul li img:hover {
	/*width: 200px;*/
	height: 200px;
	margin-top: -130px;
	margin-left: -130px;
	top: 65%;
	left: 65%;
}

p.attribution {
	font-family: 'Consolas';
	color: #000;
	clear: both;
	text-align: center;
	line-height: 25px;
	padding-top: 30px;
}

p.attribution a {
	color: #4c8d7c;
}

/* Responsive hack */
@media only screen and (min-width: 499px) and (max-width: 1212px) {
	.wrapper {
		width: 500px;
	}
}

@media only screen and (max-width: 498px) {
	.wrapper {
		width: 300px;
	}

	div.gallery ul {
		list-style-type: none;
		margin: 0;
	}
}
.fullScreen {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
video.fullScreen {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.webmcpng {display: flex;float: left;}
.abuse {color: #ffffff;text-shadow: 2px 2px #104f80;font-family: monospace;line-height: 26px;font-size: large;}
.last-update {
	float: right;
	-webkit-animation: blink 3.0s linear 10; /*infinite*/
	-moz-animation: blink 3.0s linear 10;
	-ms-animation: blink 3.0s linear 10;
	-o-animation: blink 3.0s linear 10;
	animation: blink 3.0s linear 10;
	font-family: monospace;
	padding-top: 10px;
	}
@keyframes blink {
    0% { text-shadow: 0 0 15px red; }
    50% { text-shadow: none; }
    100% { text-shadow: 0 0 15px red; }
}

@-webkit-keyframes blink {
    0% { text-shadow: 0 0 15px red; }
    50% { text-shadow: 0 0 0; }
    100% { text-shadow: 0 0 15px red; }
}