@charset "UTF-8";
/* CSS Document */

body {
	background-color: black;
	font-family: Gill Sans, "sans-serif";
/*max-width:1280px;*/
}

h1 {
	font-size:4em;
	text-align: center;
	color:white;
	background-color:black;
	
}

p {
	color: white;
	text-align: center;
	font-size: 2em;
}

.container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	padding-top: 30px;
}

.container .image {
	width: 250px;
	height: 250px;
	padding: 20px;
	
}

.container .image img {
	width: 250px;
	height: 250px;
	object-fit: contain;
	
}

.container .image:hover {
	background-color: white;
}

.container .imbox {
	width: 250px;
	height: 250px;
	padding: 20px;
}

.container .imbox:hover {
	background-color: white;
}

.container .imbox img {
	width: 250px;
	height: 250px;
	object-fit: contain;
	
}


/*button {
	width: 250px;
	height: 250px;
	color: black;
}*/