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

html, body {
	height: 100%;
}

body {
	background: white;
	display: grid;
	place-items: center;
	flex-direction: column;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 300;
	color: black;
}

a {
	color: #006492;
	text-decoration: none;
}

svg {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	margin: auto;
	vertical-align: top;
}

.card {
	width: 100%;
	max-width: 720px;
	background-color: white;
	box-shadow: 0 11px 22px -11px rgba(0,0,0,.0);
	padding: 40px;
	display: grid;
	grid-gap: 40px;
}

.card * {
	font-size: inherit;
	line-height: inherit;
}

.card main {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

@media (min-width: 600px) {
	
	.card {
		grid-template-columns: 120px auto 120px;
	}
	
}