@charset "utf-8";


body {
	background: black;
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
	font-family: 'Playfair Display', serif;


}

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


html {
	margin: 0px;
	font-family: 'Playfair Display', serif;	
	font-weight: 500;
	font-style: italic;
	font-color: white;
	 
}


body {
	width: 320px;
	margin: auto;
	text-align: center;
	font-color: white;

}

img {
	vertical-align: top;
}

a {
	color: inherit;
}


.cover {
	width: 320px;
	height: 320px;
	background-size: cover;
	background-position: center top;
}

.titel {
	color: white;
	position: relative;
	padding-top: 10px;
	padding-bottom: 30px;
	background-color: black;
}

h1 
{
	margin: 0px 0px 5px 0px;
	padding: 10px;
}



.titel h1 {
	font-size: 26px;
	line-height: 25px;
	font-family: 'Playfair Display', serif;	
	font-weight: 500;
}

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

}


.link:hover {
	background-color: lightgray;
}

.footer {
	font-family: 'Playfair Display', serif;	
	font-weight: 500;
	font-style: italic;
	font-style: normal;
	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;
}