html, body {	
	  height: 100%;
	}
	

	body {
	  background: #111;
	  max-height: 100vh;
	  max-width: 100vw;
	

	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: flex-start;
	

	  padding: 0 20px;
	}
	

	img {
	  max-width: 100%;
	  max-height: 100%;
	

	 object-fit: cover;
	 object-position: bottom;
	}
	

	.container {
	  margin: 20px 0;
	

	  display: flex;
	  align-items: center;
	  justify-content: center;
	  gap: 20px;
	

	  flex-wrap: wrap;
	

	  width: 100%;
	  max-width: 960px;
	}
	

	.container img {
	  width: 200px;
	  height: 200px;
	  object-fit: cover;
	  object-position: center;
	}

