body {
	font-family: "Raleway", sans-serif;
	margin: 0;
	padding: 0;
}
*{
	box-sizing: border-box;
}
.wrapper{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #333;
	height: 100vh;
}
.business-card-wrapper{
	max-width: 900px;
	height: 500px;
	background-color: #202020;
	padding: 100px 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 70px;
	width: 100%;
	box-sizing: border-box;
}
.owner-details h1{
	font-size: 50px;
	color: #F5F5F5;
	font-weight: 100;
	margin-top: 0;
	margin-bottom: .5rem;
	line-height: 1.2;
}
.owner-details small{
	font-size: 12px;
	color: #f1f1f1;
	display: block;
	margin: 20px 0;
	font-weight: 100;
	text-transform: uppercase;
}
.contact-details {
	display: flex;
	gap: 20px;
	align-items: center;
	margin: 30px 0;
}
.contact-details a{
	color: #f1f1f1;
	font-size: 15px;
	text-decoration: none;
	font-weight: 100;
}
.business-card-wrapper img{
	width: 200px;
}
.social-media{
	display: flex;
	gap: 7px;
	align-items: center;
}
.social-media a{
	height: 50px;
	width: 50px;
	border-radius: 5px;
	background-color: #fff;
	font-size: 30px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.social-media a img{
	width: 30px;
}
.page-loader {
	width: 100%;
	height: 100vh;
	position: fixed;
	background: #272727;
	z-index: 1000;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.spinner {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	background-color: #f1f1f1;
	border-radius: 100%;
	-webkit-animation: sk-scaleout 1s infinite ease-in-out;
	animation: sk-scaleout 1s infinite ease-in-out;
  }
  @-webkit-keyframes sk-scaleout {
	0% {
	  -webkit-transform: scale(0);
	}
	100% {
	  -webkit-transform: scale(1);
	  opacity: 0;
	}
  }
  @keyframes sk-scaleout {
	0% {
	  -webkit-transform: scale(0);
	  transform: scale(0);
	}
	100% {
	  -webkit-transform: scale(1);
	  transform: scale(1);
	  opacity: 0;
	}
  }
  