body{
	margin: 0px;
	padding: 0px;
	font-family: popping;
}
*{
	box-sizing: border-box;
}
a{
	text-decoration: none;
}
.box{
	width: 266px;
	height: 300px;
	background-color: #C5D1D8;
	box-shadow: 2px 2px 30px #rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-radius: 10px;
	margin: 50px;
	position: relative;
}

.container{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.top-bar{
	width: 50%;
	height: 4px;
	position: absolute;
	left: 50%;
	top:  0px;
	transform: translateX(-50%);
	background-color: #2c0495;
	border-radius: 0px 0px 10px 10px;
}
.verify{
	color: #17b667;
	height: 30px;
}
.details{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.details img{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	object-fit: cover;
}
.details strong{
	font-weight: 500;
	color: #141414;
	letter-spacing: 1px;
	margin-top: 10px;
}
.details p{
	font-size: 0.8rem;
	color: #7a7a7a;
	margin: 5px 0px;
}
.btn{
	width: 45%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.btn a{
	color: #5c5c5c;
	padding: 8px 22px;
	border-radius: 20px;
	font-size: 0.9rem;
}
.btn a i{
	margin-right: 10px;
}
.btn a:hover{
	color: #ffffff;
	background-color: #2c0495;
	box-shadow: 2px 5px 15px #rgba(80, 123, 252, 0.5);
	transition: all ease 0.2s;
}