* {
	box-sizing: border-box;
}
html, body {
	overflow: hidden;
}

body {
  font-family: Mori;
	background: #fff;
	padding: 0;
	margin: 0;

  background: red;
}

.gallery {
	position: fixed;
	inset: 0;
  padding: 0 10px;
  background: white;
}

.cards {
  padding: 0;
  margin-top: 0;
	position: relative;
	width: 100%;
  max-width: 40rem;
  aspect-ratio: 35 / 25;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


.cards li {
	list-style: none;
	padding: 0;
	margin: 0;
  width: 100%;
	max-width: 40rem;
	/* aspect-ratio: 16 / 9; */
  aspect-ratio: 35 / 25;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.cards li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	display: block;
}
