html,
body {
	width: 100vw;
	height: 100vh;
	background-color: #909090;

	padding: none;
	margin: none;

	font-family: Helvetica, Arial, sans-serif;
	overflow: hidden;
}

* {
	box-sizing: border-box;
	color: black;
}

main {
	max-height: calc(100% - 40px);
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 3px;
	overflow: auto;
	padding-bottom: 10px;
	padding-top: 10px;
}

.container {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 3px;

	border: 1px solid black;
	border-radius: 4px;
	flex-shrink: 1;

	padding: 4px;
	background-color: #707070;

	height: 350px;
	width: 350px;
}

.name-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.name {
	font-size: 20px;
}

.thumbnail-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.thumbnail {
	max-width: 300px;
	max-height: 147px;
	width: 300px;
	height: 147px;
}

.description-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.description {
	font-size: 16px;
	max-width: 300px;
	text-align: center;
}

a {
	color: black;
	text-decoration: none;
}

nav {
	height: 40px;
	display: flex;
	align-items: center;
	gap: 10px;
}
