body {
  margin: 10px;
  width: 100%;
  padding: 0;
  background: #FCF7F7
  font-size: 1em;
  line-height: 1.5em;
}

@font-face {
  font-family: 'Inter';
  font-style:  normal;
  font-weight: 700;
  font-display: swap;
  src: url("../Fonts/Inter-Bold.woff2") format("woff2"),
	   url("../Fonts/Inter-Bold.woff") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style:  normal;
  font-weight: 400;
  font-display: swap;
  src: url("../Fonts/Inter-Regular.woff2") format("woff2"),
	   url("../Fonts/Inter-Regular.woff") format("woff");
} 

.about_us_content_wrapper {
	background: #FCF7F7;
	width: 80%;
	margin: auto;
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-radius: 10px;
	gap: 10px;
}

.about_us_content_wrapper h2 {
	font-family: 'Inter', sans-serif !important;
	font-weight: normal;
	color: #FB6056;
	margin: auto;
	text-align: center;
	padding-left: 16px;
	font-size: 20px;
}

.about_us_content_wrapper p {
	font-family: 'Inter', sans-serif !important;
	font-weight: regular;
	color: #000;
	line-height: 2;
	font-size: 16px;
	margin: auto;
	padding: 16px;
	background: #fff;
	border-radius: 10px;
}

.special-text {
	color: #FB6056;
	font-style: italic;
}

@media screen and (min-width: 500px) {
	.about_us_content_wrapper {
		width: 80%;
		align-items: flex-start;
	}
	
	.about_us_content_wrapper h2 {
		margin: 0px;
		padding: 2px;
		font-size: 20px;
		text-align: left;
	}
}

@media screen and (min-width: 800px) {
	.about_us_content_wrapper {
		width: 600px;
		gap: 20px;
		align-items: start;
		padding: 32px;
	}
	.about_us_content_wrapper h2 {
		width: 90%;
		padding: 2px;
		margin: 0px;
		font-size: 22px;
		text-align: left;
	}
	.about_us_content_wrapper p {
		font-size: 18px;
	}
}

