* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, body {
	height: 100%;
}

body {
	background: #fff;
	display: grid;
	place-items: center;
	font-family: 'Inter', system-ui;
	font-weight: 300;
	line-height: 1.4;
	min-height: 100vh;
}

pre {
	font-family: inherit;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.card {
	width: min(77%, 720px);
	padding: 4em;
	background-color: #fff;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 3em;
}

@media (min-width: 600px) {
	.card {
		display: grid;
		grid-template-columns: 9em 1fr;
		align-items: center;
	}
}

