a,
a:active,
a:target,
a:visited {
  color: gold;
}
a:hover {
  color: gold;
  text-decoration: underline;
}

.article-list .article {
  width: 100%;
  border: none;
  padding: 0px;
}

#sp-kopfzeile {
  background: silver;
}

#sp-seite {
  background: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url(/images/seite/bild-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#startseite-links {
  width: 70%;
  float: left;
  padding: 15px;
  margin-bottom: 10px;
/*  border: 1px solid rgba(255,215,0,0.5);  */
  border-left: none;
  border-radius: 0px 25px 25px 0px;
}

#startseite-rechts {
  width: 70%;
  float: right;
  padding: 15px;
  margin-bottom: 10px;
/*  border: 1px solid rgba(255,215,0,0.5);  */
  border-right: none;
  border-radius: 25px 0px 0px 25px;
}


#sp-fusszeile{
  text-align: center;
  padding: 15px;
  margin: 0px;
  color: gold;
  background-color: black;
}

/*		Seitenformatierungen / CSS-Klassen		*/

.textbox {
  background-color: rgba(255,255,255,0.5);
  border: 3px solid #cccccc;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 85%;
  padding: 20px
  text-align: center;
}
.text-einleitung {
  font-size: 1.3em !important;
  font-weight: bolder !important;
}
.text-beitrag {
  text-align: center;
}
.text-links {
  float: left;
  text-align: left;
}
.text-mitte {
  text-align: center;
  clear: both;
}
.text-rechts {
  float: right;
  text-align: right;
}


/*		Bildformatierungen		*/

.banner {
  height: 100%;
  max-height: 200px !important;
  width: 100% !important;
  object-fit: cover;
  object-position: center center;
  opacity: 0.7;
  border-top: 1px solid gold;
  border-bottom: 1px solid gold;
}
.bild-beitrag {
  width: min(250px,35%%);
}
.bild-unscharf {
  filter: blur(5px);
}
.bild-rahmen {
  width: 300px !important;
  object-fit: cover;
  object-position: center center;
  border: 2px solid gold;
  border-radius: 40px;
}

	/* Animationen */

@keyframes blinken {
  0% {
    background-color: rgba(0,0,0,0.5);
  }
  50% {
    background-color: rgba(0,0,0,1);
  }
  100% {
    background-color: rgba(0,0,0,0.5);
  }
}

@keyframes laufleiste {
	from {
		background-position: -10% -100%;
	}
	to {
		background-position: 110% 200%;
	}
}

.button-blinken {
  min-width: 200px;
  max-width: 50%;
  height: auto;
  padding: 5px;
  margin: 20px;
  background: rgba(0,0,0,0.5);
  border: 1px solid transparent;
  border-radius: 50px;
  text-align: center;
  clear: both;
}
.button-blinken:hover {
  animation: blinken 1000ms infinite;
}

.button-laufleiste {
  min-width: 250px;
  max-width: 50%;
  height: auto;
  background: no-repeat 0% / 50% 100% linear-gradient(90deg, rgba(255,255,255,0.2)0%,              rgba(255,255,255,0.5)50%, rgba(255,255,255,0.2)100%);
  padding: 5px;
  margin: auto;
  border: 2px solid white;
  border-radius: 50px;
  text-align: center;
  float: left;
}
.button-laufleiste:hover {
  animation: 1s linear 0s infinite alternate laufleiste;
}

		/*		Schneeflocken		*/

.schneeflocken {
background-color: transparent !important;

background-image: 
    url('http://i.imgur.com/8zsjgyF.png'),
    url('http://i.imgur.com/wC1HUtA.png'),
    url('http://i.imgur.com/j5ekn4f.png');

-webkit-animation: schnee 25s linear infinite;
-moz-animation: schnee 25s linear infinite;
-ms-animation: schnee 25s linear infinite;
animation: schnee 25s linear infinite;
}
@keyframes schnee {
    0% {
        background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
        background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
}

@-moz-keyframes schnee {
    0% {
        background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
        background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
}

@-webkit-keyframes schnee {
    0% {
        background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
        background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
}

@-ms-keyframes schnee {
    0% {
        background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
        background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
}