

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

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


	.card{
		width: 100%;
		min-height: 0;
		aspect-ratio: 79/320;
		background: url(../../images/aspect_ratio.webp) no-repeat center/contain;
	}
}
