/* Stylesheet für Single Shot Music */

html, body {
  width: 100%;
  margin: 0px;
  padding: 0px;
}

body {
  background-color: rgba(115, 115, 115, 0.2);
  font-family: "Verdana", "Arial";
}

a:link {
  color: #14d9c5; text-decoration: none;
}

a:visited {
  color: #14d9c5; text-decoration: none;
}

a:hover {
  color: #14d9c5; text-decoration: none;
}

a:active {
  color: #14d9c5; text-decoration: none;
}

h2 {
  color: #14d9c5;
  font-size: 220%;
  font-style: italic;
  opacity: 65%;
}

#starter {
  width: 100%;
  aspect-ratio: 2/1;
  position: relative;
  border-width: 0px;
  background-image: url("bg_slide.png");
  background-size: 200% auto;
  background-repeat: no-repeat;
  background-position: 0 0;
  animation-name: bg-slide;
  animation-duration: 20s;
  animation-direction: normal;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

@keyframes bg-slide {
  0% { background-position: 0 0; }
  40% { background-position: 0 0; }
  50% { background-position: 100% 0; }
  90% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

#logo {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

#godown {
  position: absolute;
  left: 50%;
  bottom: 5%;
  opacity: 50%;
  animation-name: godown;
  animation-duration: 5s;
  animation-direction: normal; 
  animation-timing-function: ease;  
  animation-iteration-count: infinite;
}

@keyframes godown {
  0% {opacity: 50%;}
  50% {opacity: 50%; bottom: 5%;}
  60% {opacity: 100%; bottom: 7%;}
  70% {opacity: 75%; bottom: 6%;}
  80% {opacity: 100%; bottom: 7%;}
  100% {opacity: 50%; bottom: 5%;}
}

#header {
  width: 100%;
  height: 50px;
  position: sticky;
  top: 0px;
  padding: 10px 0px 0px 0px;
  border-width: 0px;
  background-image: url("header_bg.png");
  background-repeat: repeat-x;
  color: #14d9c5;
  text-align: center;
  font-size: 116%;  /* 14pt; */
  letter-spacing: 1px;
  z-index: 10;
}

#content {
  min-width: 600px;
  max-width: 1100px;
  width:80%;
  margin: 0px auto;
  border-width: 0px;
  color: #737373;
  font-size: 100%; /* 12pt; */
  letter-spacing: 2px;
  line-height: 1.5;
  text-align: justify;
}

#player {
  float: right;
  border-radius: 4px;
  background-color: rgba(20, 217, 197, 0.2);
  margin-left: 30px;
  margin-bottom: 15px;
  padding: 5px;
  color: #737373;
  font-size: 80%; /* 10pt */ 
}

#totop {
  clear: both;
  height: 36px;
  position: sticky;
  bottom: 24px;
  text-align: right;
}

#footer {
  width: 100%;
  height: auto;
  margin: 20px 0px 0px;
  padding: 12px 0px;
  border-width: 0px;
  background-color: #737373;
  color: #14d9c5;
  text-align: center;
  font-size: 100%; /* 12pt; */
  letter-spacing: 1px;
}
