/*Madeleine Rogersdotter TE18C*/

body{
	margin: 20px;
	padding: 0px;
	background-color: teal;

	margin-bottom: 50px;
	margin-right:25px;
	margin-left:25px;
	margin-top: 50px;
}

header{
	margin: 0px;
	width: 100%;
	background-color: turquoise;
	text-align: center;
	padding-top: 100px;
	padding-bottom: 8px;
}

header h1{
	color: linen;
	font-family: Futura, "Trebuchet MS", Arial, sans-serif;
	font-size: 2em;
}

ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: lightseagreen;
}

li{
  float: right;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}

li a{
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover{
  background-color: darkcyan;
}

p{
	font-family: Times New Roman, Times, serif;
	color: oldlace;
	font-size: 18px;
	line-height: 1.5;
}

p#ingress{
	text-align: center;
}

p.indragen{
	text-indent: 56px;
}

hr{
	border-color: lightseagreen;
}

footer{
	color: linen;
	font-family: Futura, "Trebuchet MS", Arial, sans-serif;
	text-align: center;
}

footer a{
	color: linen;
	font-family: Futura, "Trebuchet MS", Arial, sans-serif;
	text-decoration: none;
}

img{
	display: block;
  	margin-left: auto;
  	margin-right: auto;
}

#link{
	position: absolute;
	height: auto;
        width: 6%;
        animation-name: spring;
        animation-duration: 6000ms;
        animation-iteration-count: infinite;
}

@keyframes spring{
	from{
        transform:translateX(-100px); 
	}
	to{
		transform:translateX(1550px);
	}
}