html {
	background: #fff;
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	margin: 0;
	color: #fff;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu,
		Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial,
		sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

.hero {
	min-height: 50vh;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: stretch;
	background: #485fc7;
}

.hero-body {
	padding: 3rem 1.5rem;
	display: flex;
	flex-grow: 1;
	flex-shrink: 0;
	align-items: center;
}

h1 {
	margin: 0 0 1.5rem;
	color: #fff;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.125;
}

p {
	margin: -1.25rem 0 0;
	color: rgb(255 255 255 / 90%);
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.25;
}

@media (min-width: 48.0625rem) {
	.hero-body {
		padding: 3rem;
	}
}
