.class-index {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px;
}

@media screen and (max-width: 800px) {
	.class-index {
		display: flex;
		flex-direction: column;
	}
}