@charset "utf-8";
/* CSS Document */



* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family:Geneva, Verdana, sans-serif;
}


body {
	background-color: lightgray;
	color: #333;
}


header {
	background-color: darkblue;
	color: white;
	padding: 20px 0;
	text-align: center;
	border-bottom: 4px solid blue;
}


h1 {
	padding: 10px;
}


a {
	padding: 10px;
	color: white;
	text-decoration: none;
}

a:hover {
	color: lightblue;
	text-decoration: underline;
	background-color: black;
	object-fit: cover;
	border: 1px solid #ddd;
	border-radius: 8px;
	
}


article {
	padding: 15px;
	margin: 1%;
	width: 31.3%;
	float: left;
	background-color: white;
	border:1px solid #ddd;
	border-radius: 8px;
	line-height: 1.5;
	text-align: left;
}


img {
	height: 250px;
	width: 100%;
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 10px;
}
