.kreationen {
	display: flex;
	justify-content: space-around;
	flex-direction: row;
	flex-wrap: wrap;
}

.kreationen article {
    position: relative;
    
	background-color: white;
	padding: 0.5em;
	margin: 0.5em;
	border-radius: 0.5em;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 1000px) {
	.kreationen article {
		width: calc((100% / 3) - 1% - 2em);
	}
}

@media (min-width: 700px) and (max-width: 1000px) {
	.kreationen article {
		width: calc(49% - 2em);
	}
}

@media (max-width: 700px) {
	.kreationen article {
		width: calc(99% - 2em);
	}
}

.kreationen article > h2 {
	font-family: Bungee, cursive;
	font-size: 1em;
	text-align: center;
	color: #DD3939;
}

.kreationen article > details {
	color: rgba(0, 0, 0, 0);
	transition: color 2s;
}

.kreationen article > details[open] {
	color: rgba(0, 0, 0, 1);
}

.kreationen article > input {
    display: none;
    opacity: 0;
    flex-grow: 1;
}

.kreationen article > input:checked {
    display: block;
}

.kreationen article > label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    margin: -0.6em 0 -0.6em auto;
    background-color: #EBBA44;
    border: solid 0.1em rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.6);
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.kreationen article > input:checked + label {
    position: fixed;
    top: 10vw;
    right: 20vw;
    margin: 0;
    margin-right: -0.6em;
    transform: rotate(45deg);
    z-index: 3;
}

.kreationen article > iframe {
    flex-grow: 1;
	display: block;
	width: 100%;
	border: none;
    margin: 0.5em 0;
    transition: border 0.3s;
}

.kreationen article > input:checked + label + iframe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: solid rgba(0, 0, 0, 0.8);
    border-width: 10vw 20vw;
    z-index: 2;
}

.kreationen article summary::-webkit-details-marker {
	display: none;
}

.kreationen article summary {
	font-size: 0.7em;
	color: grey;
	outline: none;
	cursor: pointer;
}

.kreationen article summary:hover {
	color: #4D4D4D;
}

.kreationen article summary::after {
	content: " öffnen";
}

.kreationen article details[open] summary::after {
	content: " schließen";
}

.kreationen article > details > p {
	margin: 0.3em;
	text-align: justify;
	font-size: 0.8em;
}

.kreationen article > data {
	display: block;
	text-align: right;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 0.8em;
	color: grey;
	font-weight: bold;
}

.kreationen article > data:nth-last-of-type(3)::before {
	content: "3x ";
	font-weight: normal;
	font-size: 0.8em;
}

.kreationen article > data:nth-last-of-type(2)::before {
	content: "2x ";
	font-weight: normal;
	font-size: 0.8em;
}

.kreationen article > data:last-of-type {
	color: #EBBA44;
	font-weight: bolder;
	font-size: 1.3em;
}

.kreationen article > p:last-of-type {
	position: absolute;
	top: -2.5em;
	left: -5%;
	display: block;
	width: 30%;
	padding: 1em;
	font-size: .8em;
	background-color: #26BEC6;
	color: white;
	text-align: center;
	font-family: "Open Sans", Arial, sans-serif;
	font-weight: bold;
	text-shadow: 0.05em 0.05em 0.1em grey;
	box-shadow: 0.03em 0.03em 0.1em black, -0.005em -0.005em 0.05em black;
	transform: rotate(-10deg);
}

#load  {
	width: calc(100% + 17vw);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	background-color: rgb(38, 190, 198);
	margin: -8.5vw -8.5vw 6vw -8.5vw ;
}

#load > a {
	display: block;
	flex-grow: 1;
	padding: 0.7em;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
	color: white;
	text-decoration: none;
	cursor: pointer;
}

#load > a:hover {
	background-color: rgb(33, 164, 171);
}

#load > a#page_active {
	color: black;
}