.tablesGrid{
    display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 5px;
}

@media screen and (orientation: landscape) {
	.tablesGrid{
		grid-template-columns: repeat(8, minmax(0, 1fr));
	}
}