@keyframes backgroun {
	0% {
		background-color: #47C4AC;
		background-image: url("../images/fishicon.png");
	}
	20% {
		background-color: #47BAC4;
		background-image: url("../images/fishicon.png");
	}
	40% {
		background-color: #519CC4;
		background-image: url("../images/fishicon.png");
	}
	60% {
		background-color: #4777C4;
		background-image: url("../images/fishicon.png");
	}
	80% {
		background-color: #4755C4;
		background-image: url("../images/fishicon.png");
	}
	100% {
		background-color: #47C4AC;
		background-image: url("../images/fishicon.png");
	}
}

* {
	margin: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

body {
	font-family: Verdana, Arial, sans-serif;
	animation-name: backgroun;
	animation-duration: 10s;
	animation-iteration-count: infinite;
}

main {
	width: 1200px;
	margin: 0 auto;
	background-color: #AFDFF7;
	height: 100%;
}

header {
	background-color: #305E75;
	padding: 15px;
}

h1 {
	margin-bottom: 15px;
	color: #AFDFF7;
}

header img {
	width: 100%;
}

hr {
	margin: 7.5px 0;
	border: 1px solid #748BED;
}

section {
	display: flex;
}

aside {
	margin-left: 15px;
	width: 15%;
	border-right: 1px solid #748BED;
}

aside ul {
	list-style-type: none;
}

aside ul li {
	color: #005460;
	padding: 5px;
	transition: padding-left .5s;
}

aside ul li:hover {
	padding-left: 10px;
	color: #256250;
}

aside h2, aside h3 {
	color: #2C735D;
}

aside h3 {
	margin-top: 10px;
}

aside p {
	line-height: 1.4em;
	margin-top: 3px;
	margin-left: 15px;
}

#galeria {
	margin-top: 15px;
	background-color: #64C5F5;
	height: 200px;
}

#galeria a {
	margin: 0 2%;
}

#galeria img {
	margin-top: 25px;
}

article {
	line-height: 1.4em;
	width: 85%;
	margin-left: 15px;
}

article h2 {
	margin-top: 15px;
}

article h2, article h3 {
	color: #256250;
	padding-bottom: 10px;
}

article p {
	margin-right: 15px;
}

footer {
	padding-top: 15px;
	margin-top: -7.5px;
	background-color: #305E75;
	color: #AFDFF7;
	text-align: center;
	height: 50px;
}

