/* General */
body {
   
font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;

background-color: #aeb4b4;

color: #333;
}

header {

background-color: #246D7E;
color: white;
padding: 1px 1px;
text-align: right;
  
    align-items: right;
    justify-content: space-between;


}

header nav a {

color: white;

text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
	
	
}

header nav a:hover {
 
text-decoration: underline;
}

main {
    
   
padding: 20px;
}

section {
    margin-bottom: 20px;
}



.image-container {
    margin: 20px auto;
    width: 700px;
    height: 500px;
    overflow: hidden;
    position: relative;
}
.image-container img {
	width: 100%;
	height: 100%;
	position: absolute;
	animation: moveImage 3s infinite ease-in-out;
	left: -630px;
	top: -6px;
}
