* {
	box-sizing: border-box;
}

html {
	height: 100vh;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	background: #333;
	width: 100%;
	height: fit-content;
	margin: 0;
	padding: 16px 0px 0 16px;
}

#grid {
	width: 100%;
}

.grid-item {
	border-radius: 8px;
	width: 300px;
	height: max-content;
	margin-bottom: 16px;
}
