body{
	margin: 0px;
	padding: 0px;
	background: hsl(0, 7%, 94%);
	font-family: arial;
	box-sizing: border-box;
}
.card-container{
	width: 300px;
	height: 430px;
	background: rgb(250, 246, 246);
	border-radius: 6px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	box-shadow: 0px 1px 10px 1px rgb(0, 0, 0);
	overflow: hidden;
	display: inline-block;
}
.upper-container{
	height: 150px;
	background: #a200ff;
}
.image-container{
	background: rgb(248, 243, 243);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	padding: 5px;
	transform: translate(100px,100px);
}
.image-container img{
	width: 80px;
	height: 80px;
	border-radius: 50%;
}
.lower-container{
	height: 280px;
	background: rgb(0, 0, 0);
	padding: 20px;
	padding-top: 40px;
	text-align: center;
}
.lower-container h3, h4{
    color:beige;
	box-sizing: border-box;
	line-height: .6;
	font-weight: lighter;
}
.lower-container h4{
	color: #7F00FF;
	opacity: .6;
	font-weight: bold;
}
.lower-container p{
	font-size: 16px;
	color: rgb(255, 251, 251);
	margin-bottom: 30px;
}
.lower-container .btn{
	padding: 12px 20px;
	background: #7F00FF;
	border: none;
	color: rgb(252, 245, 245);
	border-radius: 30px;
	font-size: 12px;
	text-decoration: none;
	font-weight: bold;
	transition: all .3s ease-in;
}
.lower-container .btn:hover{
	background: transparent;
	color: #7F00FF;
	border: 2px solid #7F00FF;
}