/* 
Description of index.css
Fassung20190101
@author Alexander K.M. Holst
*/

{
    margin: 0px;
    padding: 0px;
}

body {
    background-color: black;
}


div.bildDivKlasse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

img {
    width: 99%;
    z-index: -1;
}

/* Position the "facebookLogo button"  */
#facebookImg {
  position: absolute;
  left: 5px;
  bottom: 5px;
  width:25px;
  z-index: 0;
  border-radius: 3px 0 0 3px;
}

/* Position the "twitterLogo button"  */
#twitterImg {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width:33px;
  z-index: 0;
  border-radius: 3px 0 0 3px;
}

.cen_terClass {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
}

#cen_terText {
    
    position: absolute;
    left: 20px;
    top: 10px;
    
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-style: oblique;
    font-size: 13px;
}

#DuNText {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-style: oblique;
    font-size: 13px;
}

#DuNbox {
	display: block;
	z-index: 100;
	position: fixed;
	top: 0px;
	min-height: 30px;
	padding: 5px;
	margin: 0;
	width: 100%;
/* 
	color:  #000000;
	border: 1px solid black;
	border-bottom: none;
*/
	background: white;
}

#cookieText {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-style: oblique;
    font-size: 13px;
}

#cookiebox {
	display: block;
	z-index: 100;
	position: fixed;
	bottom: 0px;
	min-height: 30px;
	padding: 5px;
	margin: 0;
	width: 100%;
/* 
	color:  #000000;
	border: 1px solid black;
	border-bottom: none;
*/
	background: #FFD700;
}

.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 10px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
}

.buttonBlackAndWhite {
  background-color: white;
  color: black;
  border: 2px solid #555555;
}

.buttonBlackAndWhite:hover {
  background-color: #555555;
  color: white;
}

/* west, ost, sued & nord buttons */
.west, .ost, .sued, .nord {
  cursor: pointer;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "west button"  */
.west {
  position: absolute;
  left: 0%;
  top:50%;
  border-radius: 3px 0 0 3px;
}

/* Position the "ost button"  */
.ost {
  position: absolute;
  right: 0%;
  top: 50%;
  border-radius: 3px 0 0 3px;
}

/* Position the "sued button"  */
.sued {
  position: absolute;
  left: 50%;
  bottom: 0%;
  border-radius: 3px 0 0 3px;
}

/* Position the "nord button"  */
.nord {
  position: absolute;
  left: 50%;
  top: 10px;
  border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */
.west:hover, .ost:hover, .sued:hover, .nord:hover {
  background-color: rgba(0,0,0,0.8);
}

