* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Outfit', sans-serif;
	background:hsl(212, 45%, 89%);
	font-size: 15px;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 100vh;

}


.box {
	width: 320px;
	height: 490px;
	background: hsl(0, 0%, 100%);
	display: flex;
	justify-content: start;
	align-items: center;
	flex-direction: column;
	border-radius: 20px;


}

.text {
	padding: 0 30px;
}


.title {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	color: hsl(218, 44%, 22%);

}


.paragraph {
	font-weight: 400;
	text-align: center;
	margin-top: 15px;
	color: hsl(220, 15%, 55%);
}

.qr-code {
	margin-top: 15px;
	margin-bottom: 20px;
}

.qr-code img {
	width: 290px;
	border-radius: 15px;

}