img {
	display: inline-block;
	width: 30rem;
}

.warning {
	font-size: 3rem;
}

.grid1 {
	width: 46rem;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	grid-template-rows: repeat(2, 1fr);
	grid-gap: 0.5rem;

	img {
		width: 15rem;
	}

	& > img:first-of-type {
		grid-column: 1 / 2;
		grid-row: 1 / 3;
		width: 30rem;
	} 

	& > .flex1 {
		grid-column: 2 / 3;
		grid-row: 1 / 3;
	}
}

.flex1 {
	img {
		/* height: 100%; */
	}
}