

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

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


	.card{
		width: 100%;
		aspect-ratio: 1/1;
		background: rgb(203, 221, 255);
	}
}
