.navigation {
	background-color: #008080;
	font-size: 20px;
	margin: -8px -8px;
}

.mainpage {
	background-image: url("../pictures/tile.jpg");
	color: #FFFFFF;
}

.gamespage {
	background-image: url("../pictures/tile.jpg");
	color: #FFFFFF;
}

.gamelist {
    display: flex;
	flex-direction: row;
    align-items: center;
    font-size: x-large;
    padding: 10px;
}

.blogpage {
	background-image: url("../pictures/tile.jpg");
	color: #FFFFFF;
}

.contactpage {
	background-image: url("../pictures/tile.jpg");
	color: #FFFFFF;
}

body {
	background-color: #008080;
}

a {
	text-decoration: none;
	color: #FFFFFF;
}

a:hover {
	color: #FF0000;
}

h1 {
	font-size: 100px;
}

h3 {
	font-size: 40px;
}

.rainbow {
	background: linear-gradient(45deg,red,orange,yellow,green,blue,indigo,violet);
	background-clip: text;
	color: transparent;
	font-weight: bold;
	letter-spacing: 2px;
	animation: rainbow_animation 6s ease-in-out infinite;
	background-size: 400% 100%;
}

@keyframes rainbow_animation {
	0%,
	100% {
		background-position: 0 0;
	}
	50% {
		background-position: 100% 0;
	}
}

.gameitem img{
	width: 40%; 
}