.body {
  background-color: #ff7d00;
}

h1 {
  text-align: center;
}

.grid {
  display: inline-block;
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
  align-items: center;
}

.pricing {
  border-radius: 10px;
  background-color: #F0F2F9;
  margin: 10px;
  padding: 10px;
  display: block;
  grid-template-columns: 1fr 1fr;
  justify-items: left;
  align-items: center;
}

.price-field {
  display: inline-block;
  text-align: left;
}

.price-field p {
  line-height: 1rem;
  margin: 0;
}

.label {
  color: gray;
}

.row {
	text-align: center;
}

.about-us {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	max-width: 1400px;
	margin-inline: auto;
	margin-block: 3rem;
}

.card {
	flex: 0 0 auto;
  position: relative;
	display: inline-block;
	width: 280px;
	min-height: 300px;
	margin: 1rem;
	padding-bottom: 1rem;
	border: solid 1px rgba(0,0,0,0.2);
	border-radius: 15px;
	overflow: hidden;
  font-size: 1rem;
	text-align: center;
	background-color: white;
  color: black;
  font-family: "Inter Regular", 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.card-header {
	color: white;
	height: 4.5rem;
	font-family: "Inter Bold", "Helvetica", "Verdana", sans-serif;
	font-weight: bold;
}

.card-header h2 {
	font-size: 2.25rem;
  line-height: 4.5rem;
}

.card p {
	margin-inline: 1rem;
	line-height: 1.5rem;
}

.card h3 {
  font-family: var(--font-bold);
  font-size: 1.5rem;
  margin-block: 5px;
}

.card-pic {
  border-radius: 10px;
  height: 240px;
  width: 240px;
  overflow: hidden;
  margin-inline: auto;
  margin-block: 20px;
}

.card-pic img {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blue {
	background-color: #1434FF;
}

.green {
	background-color: #007A00;
}

.red {
	background-color: #DB0000;
}

.black {
	background-color: #2d2d2d;
}

.pink {
	background-color: #FF8599;
}