* {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Roboto, Ubuntu, sans-serif;
	box-sizing: border-box;
	
}
.parent {
	display: grid;
	align-items: center;
	/* justify-items: center; */
	width: 100%;
	/* height: calc(100vh - 50px); */
}
.container {
	width:100%;
	max-width: 1024px;
	background-color: #fff;
	color: #333;
	margin:0 auto;
	padding:40px 0;
}

@media (max-width:1023px) {

.container {
	width: 100%;
	height: auto;
	padding: 20px;
	
}
}
img {
	/* margin-bottom: 20px; */
}
h1 {
	font-weight: 600;
	font-size: 32px;
	margin-bottom: 1rem;
}
h2 {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 1rem;
}
h3 {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 1rem;
}
p {
	margin-bottom: 1rem;
}
.price {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}
button {
	background-color: rgb(0, 116, 212);
	color: rgb(255, 255, 255);
	height: 44px;
	width:96%;
	max-width: 400px;
	border: none;
	border-radius: 6px;
	margin: 0 auto;
	display: block;
	font-size: 24px;
}
button:hover {
	cursor: pointer;
	filter: brightness(1.1);
}
.process {
	font-size: 14px;
	margin-bottom: 40px;
}
.highlight {
	color:#cc294d;
	font-weight:bold;
}
