@import url('https://fonts.googleapis.com/css?family=Cinzel+Decorative|Poiret+One|Allerta');
/*
	hsl(276, 8%, 13%)
	hsl(228, 14%, 28%)
	hsl(180, 20%, 43%)
	hsl(132, 26%, 58%)
	hsl(84, 32%, 73%)

	rgb(34, 30, 36)
	rgb(61, 65, 81)
	rgb(88, 132, 132)
	rgb(120, 176, 131)
	rgb(191, 208, 164)

	#221e24 very dark blue
	#3d4151 dark blue
	#588484 blue
	#78b083 green
	#bfd0a4 light green
*/
html{
	height: 100%;
}
body{
    font-family: "Allerta", sans-serif;
	height: 100%;
	text-align: center;
	background-color: #3d4151; /* dark blue */
	padding: 0;
	margin: 0;
}
#loader {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	width: 120px;
	height: 120px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

.sk-cube-grid {
  width: 40px;
  height: 40px;
  margin: 100px auto;
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #bfd0a4;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
          animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 
}
.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s; }
.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s; }
.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1); 
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1);
  } 
}
#container {
	display: none;
	text-align: center;
}
.clear{
	width: 100%;
	clear: both;
	margin-bottom: 20px;
}
#terug{
	color: #bfd0a4; /* very light green */
	font-size: 22px;
	text-decoration: none;
}
#terug:hover{
	text-decoration: underline;
}
h1{
    font-family: "Poiret One", cursive;
    font-size: 40px;
	color: #78b083; /* green */
	background-color: #221e24; /* very dark blue */
    letter-spacing: 2px;
    word-spacing: 5px;
	padding: 15px;
	margin-top: 0;
}
#view-port{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: #221e24; /* very dark blue */
	
}
#view-port #view-port-image{
	margin: 10px auto;
	border: 5px solid #000;
	border-radius: 20px;
	opacity: 1px;
	max-width: 95%;
	max-height: 95%;
    -webkit-animation-name: flow; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 1.3s; /* Safari 4.0 - 8.0 */
    animation-name: flow;
    animation-duration: 1.3s;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes flow {
  from {opacity: .5;}
  to {opacity: 1;}
}

/* Standard syntax */
@keyframes flow {
  from {opacity: .5;}
  to {opacity: 1;}
}
#del, #prev, #next, #pauze, #play{
	position: fixed;
	z-index: 999;
	cursor: pointer;
}
#del{
	top: 20px;
	right: 20px;
}
#play{
	top: 20px;
	right: 70px;
}
#pauze{
	top: 20px;
	right: 70px;
}
#prev, #next{
	top: calc(50% - 20px);
}
#prev{
	left: 20px;
}
#next{
	right: 20px;
}
.thumbnail{
	display: inline-block;
	border: 3px solid #221e24; /* very dark blue */
	border-radius: 8px;
	width: 200px;
	height: 200px;
	cursor: pointer;
	overflow: hidden;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.thumbnail:hover{
	border: 3px solid #bfd0a4; /* light green */
}
footer{
	line-height: 30px;
	background-color: #221e24; /* very dark blue */
	width: 100%;
	color: #bfd0a4;  /* very light green */
	position: fixed;
	bottom: 0;
	font-size: 12px;
}


















