* {
	box-sizing: border-box;
}

body {
	background-color: #242424;
}

div.main {
	width: 80vw;
	min-height: 80vh;
	margin: 10vh 10vw 10vh 10vw;
	display: flex;
	align-items: center;
	flex-direction: column;
}

div.main h1 {
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	color: white;
}

div.grid {
	display: grid;
	gap: 20px;
	padding: 10px;
	width: 100%;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
div.grid div {
	transition: 0.2s;
}

div.grid div:hover {
    transform: scale(1.1);
}

div.grid img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

a {
	text-decoration: none;
}

div.grid h3 {
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	text-align: center;
	color: white;
}

.back-button {
	position: absolute;
	color: white;
	background-color: black;
	top: 20px;
	left: 20px;
	width: 80px;
	height: 40px;
	font-size: 20px;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.2s;
}

.back-button:hover {
    transform: scale(1.1);
}