﻿@font-face {
	font-family: Metamorphous;
	src: url(Metamorphous/Metamorphous-Regular.ttf);
}

html {	
	width: 100%;
	height: 100%;
}

body {
	background-color: #f5f5f5;
	margin: 0px;
	padding: 0px;
	color: darkblue;
	font-family: Metamorphous;
	text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
	text-align: center;
	width: 100%;
	height: 100%;
}

.background-container {
	  width: 100%;
	  height: 100%;
	  background-image: url('orakel.png');
	  background-size: cover;
	  background-position: center;
	  position: relative;
  	  z-index: 1;
	  display: flex;
	  justify-content: center;
	  align-items: center;
}

.background-container::before {
  content: "";
  position: absolute;
  inset: 0; /* hetzelfde als top: 0; right: 0; bottom: 0; left: 0 */
  background-color: darkblue; /* of een andere kleur */
  opacity: 0.4; /* alleen de achtergrond is doorzichtig */
  z-index: -1;
  pointer-events: none; /* voorkomt dat het pseudo-element interacties blokkeert */
  border-radius: inherit; /* optioneel, als je border-radius gebruikt */
}

.container {
	position: absolute;
	z-index: 100;
	width: 100%;
	margin: auto;
	opacity: 1.0;
}

.description-text {
	color: darkblue;
	letter-spacing: -0.01em;
	font-size: 1.25em;
	line-height: 20px;
}

img {
	box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
}

.gallery { 
	display: flex; 
	flex-wrap: wrap; 
	justify-content: center; 
  width: 100%;
}
.thumb, .card { 
	overflow: hidden; 
	padding: 20px; 
	width: 100%;
  max-width: 600px; 
  background-color: #f4f4f4;
}

.card { 
  max-width: 300px; 
}
.thumb img, .card img { 
  border: 0px solid #fff;
  border-radius: 3px;
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: auto;
}

.card img { 
  max-width: 300px;
}

.thumb img:hover, card img:hover { 
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2); 
}

.uitleg { 
  font-size: 18px;
  color: #6c6868;
  margin-top: 10px;
  line-height: 24px;
  border: solid white 1px;
  border-radius: 10px;
  padding: 14px;
  background-color: white;
	text-align: left;
}

#spinner {
	display: none;
	text-align: center;
	margin: 20px;
}
.loader {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #555;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: auto;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}