/* Laufleiste rechts ausblenden*/
::-webkit-scrollbar { 
  display: none;
}

/* great-vibes-regular - latin */
@font-face {
  font-family: Great Vibes;
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/GreatVibes-Regular.woff2') format('woff2');
}

html,body {
	scroll-behavior: smooth;
}
body {
	font-family: Times;
	font-size: 1.2em;
    color: #000;
	background-color: #fff; 
}
	
h1 {
    font-family: Great Vibes;
	font-size: 3.6em;
    line-height: 0.6;
}

h2 {
    font-family: Great Vibes;
	font-size: 2.4em;
    line-height: 0.6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.textarea {
	width:100%;
	background-color:#fff;
	color:#000;
	border-width:1px;
	border-color:#fff;
	//padding: 6px 10px;
	font-size: 1.2em;
}

.titel {
	text-decoration:none;
	color:black;
}

.mini {
	font-size:0.6em;
	color:#999;
}

.engel {
	position: fixed; bottom: -6px; left: 20px; z-index: 1;
}

a { 
	color:blue; 
}

p,h2,h3,h4 {
  margin-bottom: 24px;
  margin-top: 16px;
}

ul,ol {
	margin-left:1.2em; 
	padding-left: 1em;
}

.zitat {
	font-style:italic;
	text-align: right;
	width: 80%;
	margin-left:20%;
	margin-bottom:24px;
}

.container_oben {
    width: 98%;
    /* max-width: 1600px; */
    margin: 0 auto;
    padding: 20px;
}

.container {
    width: 90%;
    max-width: 666px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: #333;
    color: #fff;
    padding: 0px 0; /*10px 0*/
}

header h1 {
    margin: 0;
    text-align: center;
}

main {
    padding: 0px 0;
}

footer {
    background: #ccc;
    color: #000;
    text-align: left;
    padding: 10px 0;
}

/** LIGHTBOX MARKUP **/
.lightbox {
  /* Default to hidden */
  display: none;

  /* Overlay entire screen */
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  /* A bit of padding around image */
  padding: 1.6em;

  /* Translucent background */
  background: rgba(0, 0, 0, 0.8);
}

/* Unhide the lightbox when it's the target */
.lightbox:target {
  display: block;
}

.lightbox span {
  /* Full width and height */
  display: block;
  width: 100%;
  height: 100%;

  /* Size and position background image */
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 600px) {
    header h1 {
        text-align: le
}
