@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	background-color: #d6e2f0;
	font-family: "Outfit", sans-serif;
}
.container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.area {
	background-color: white;
	max-width: 20rem;
	padding: 1rem;
	border-radius: 15px;
	text-align: center;
}
.img-wrapper img {
	max-width: 100%;
	border-radius: 15px;
}
h1,
p {
	margin-inline: 0.8rem;
	margin-top: 1rem;
	text-align: center;
}
h1 { 
	font-size: 1.25rem;
	font-weight: 700;
	color: hsl(218, 44%, 22%);
}
p {	
	font-size: 0.9375rem;
	margin-bottom: 1rem;
	color: hsl(220, 15%, 55%);
}
