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

html {	
	width: 100%;
	height: 100%;
	background-image: url('../orakel.png');
  background-size: cover;
  background-position: center;
}

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%;
}

.error {
	
}

#dalle {
	position: absolute;
	z-index: 10;
	left: 10px;
	top: 10px;
	width: 300px;
	color: wheat;
	text-shadow: none;
	text-align: left;
}

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

.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;
	max-height: 100%;
	max-width: 90%;
}

.description-text {
	color: darkblue;
	letter-spacing: -0.01em;
	font-size: 18px;
  line-height: 12px;

}

.date { 
	font-size: 12px; 
	color: #777; 
	margin-top: 10px; 
	  padding: 10px;
}

.gallery { 
	display: flex; 
	flex-wrap: wrap; 
	justify-content: center; 
    width: 100%;
}
.thumb { 
	overflow: hidden; 
	padding: 20px; 
	width: 90%;
  max-width: 500px; 
	border-radius: 12px;
  position: absolute;
  top: 10px;
}


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

#orakelIMG { 
  max-width: 100%;
	max-height: 400px;
}
#orakelIMG img { 
  object-fit: cover;
  width: auto;
  max-height: 400px;
	max-width: 95%;

}


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

input[type=text], select {
  width: 400px;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
	max-width: 90%;
}

textarea {
  width: 400px;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #fff3d3a3;
	max-width: 90%;
}

input[type=submit] {
  width: 400px;
  background-color: #E09C2E;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
	max-width: 90%;
}

input[type=submit]:hover {
  background-color: #00008B;
}

#spinner {
	display: none;
	text-align: center;
	margin: 20px;
	color: wheat;
	text-shadow: none;
}

.loader {
  width: 66px;
  aspect-ratio: 1;
  color: #BC9254;
  border-radius: 50%;
  display: grid;
  background: 
    conic-gradient(from 90deg at 4px 4px,#0000 90deg,currentColor 0)
    -4px -4px/calc(50% + 2px) calc(50% + 2px),
    radial-gradient(farthest-side,currentColor 6px,#0000 7px calc(100% - 6px),currentColor calc(100% - 5px)) no-repeat;
  animation: l10 2s infinite linear;
  position: relative;
	margin: auto;
}

.loader:before {
  content: "";
  border-radius: inherit;
  background: inherit;
  transform: rotate(45deg);
}
@keyframes l10 {to{transform: rotate(.5turn)}}

.error {
	text-align: left;
}

.log {
	position: absolute;
	top: 2px
}

/*
.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); }
}