* {
	font-size: 25px;
}
/* General styles */

body {
	font: 15px arial, sans-serif;
	background-color: #e6e6e6;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* Logo */

.logo img {
	max-width: 70%;
	margin-bottom: 30px;
}

/* Search bar */

#searchBar {
	border: 2px solid black;
	padding: 16px 32px;
}

/* Search button */

#searchButton {
	background-color: #f44336;
	border: 2px solid black;
	color: black;
	padding: 16px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	margin: 4px 2px;
	transition-duration: 0.4s;
	cursor: pointer;
}

#searchButton:hover {
	background-color: #ff8080;
	color: white;
}

.description {
	text-align: center;
	margin: 0 auto;
	max-width: 960px;
}

/* Thumbnail layout */

.thumbnail {
	transition: transform 1s, box-shadow 1s;
	margin-bottom: 40px;
}

.thumbnail:hover {
	box-shadow: 2px 6px 5px grey;
	transform: scale(1.05);
}

/* Footer */

footer {
	font-size: 20px;
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	text-align: center;
	padding: 20px 10px;
	color: black;
	background-color: white;
}
