::-webkit-scrollbar {
	width: 15px;
  }
  
  ::-webkit-scrollbar-track {
	background: #a0a0a0;
  }
   
  ::-webkit-scrollbar-thumb {
	background: #888888; 
  }
  
  ::-webkit-scrollbar-thumb:hover {
	background: #555555; 
  }


/* Hack für Safari - kann kein fixed beim Background :-(
html::before {
  content: ' ';
  display: block;
  background-image: url("../img/background.jpg");
  background-position: center;
  background-size: cover;
  height: 100vh; width: 100vw;
  top: 0; bottom: 0; left: 0; right: 0;
  position: fixed;
  z-index: -10;
}
*/

html::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: rgb(160, 160, 160);
    border: 1px solid #06FF16;
  }

  body {
    border: none;
    margin: 0;
    padding: 0;
    color: #ffffff;
    background-image: url("../img/background.jpg");
    background-attachment: fixed;
  }  

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: #0000ff;
  text-decoration: none;
}

a:visited,
a:hover,
a:active {
  color: #0000ff;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

span {
  display: inline-block;
}

iframe {
  border-radius: 30px;
  width: 90%;
  height: 90%;
}

.emboss {
  color: transparent;
  background: #474747;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  text-shadow: 0px 3px 3px rgba(255,255,255,0.5);
}