@charset "utf-8";

body {
	background: linear-gradient(-45deg, violet, black, deeppink, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


html {
	margin: 0px;
	font-family: 'Trebuchet', sans-serif;
	font-weight: thin;
	font-size: 14px;
	line-height: 16px;
}


body {
	width: 320px;
	margin: auto;
	text-align: center;
}

img {
	vertical-align: top;
}

a {
	color: inherit;
}


.cover {
	width: 320px;
	height: 320px;
	background-size: cover;
	background-position: center top;
	border-bottom: 1px solid #303030;
}

.titel {
	color: white;
	position: relative;
	padding: 10px;
	background-color: #181818;
}

.titel h1 {
	text-transform: ;
	font-size: 20px;
	line-height: 20px;
	margin: 0px 0px 5px 0px;
	font-weight: 300;
}

.titel .pfeilchen {
	position: absolute;
	bottom: -8px;
	left: 50%;
	margin-left: -8px;
}

.link {
	display: block;
	background-color: white;
	padding: 10px;
	border-bottom: 1px solid violet;
}

.link:last-child {
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;
}

.link:hover {
	background-color: #F4F4F4;
}

.footer {
	padding: 20px;
}

.footer .copyright {
	margin-top: 5px;
	font-size: 12px;
	color: white;
}

.footer .copyright a {
	text-decoration: underline;
}


 article {
  max-width: 100%;
  margin: 1em auto;
  overflow: hidden;
  position: relative;
  font-size:12pt;
  letter-spacing:.1em;
  color: white;
}

.example-left {
  white-space: nowrap;
  position: absolute;
  text-transform: uppercase;
}

.example-left {
  -webkit-animation: mymove 8s linear infinite; /* Safari 4.0 - 8.0 */
  white-space: nowrap;
  animation: mymove 8s linear infinite alternate;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes mymove {
  from {
    left: 0;
  }
  to {
    left: -140px;
  }
}

@keyframes mymove {
  from {
    left: 0;
  }
  to {
    left: -140px;
  }
}


.example-right {
  white-space: nowrap;
  position: relative;
  top:2em;
  opacity: .4;
  text-transform: uppercase;
}

.example-right {
  -webkit-animation: urmove 8s linear infinite; /* Safari 4.0 - 8.0 */
  white-space: nowrap;
  animation: urmove 8s linear infinite alternate;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes urmove {
  from {
    right: 0;
  }
  to {
    right: -140px;
  }
}



.footer .copyright a:hover {
	text-decoration: none;
}

.footer .copyright a:hover {
	text-decoration: none;
}