

body{
	display: grid;
	place-items: center;
	margin: 0;
	padding: 20px;
	height: 100vh;
	box-sizing: border-box;
}

.box{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	width: 100%;


	.card{
		width: 100%;
		/* min-height: 0; */
		aspect-ratio: 16/9;
		background: rgb(203, 221, 255);
		overflow: hidden;
	}
}

img{
	width: 100%;
	baseline-shift: center;
	/* height: 100%; */
	/* object-fit: cover; */
}
