﻿body{
	margin: 0px;
	padding: 0px;
	background: #f1f1f1;
	font-family: arial;
	box-sizing: border-box;
}
.card-container{
	width: 220px;
	height: 500px;
	background: #FFF;
	border-radius: 6px;
	position: absolute;
	top: 30%;
	left: 10%;
	transform: translate(-50%,-50%);
	box-shadow: 0px 1px 10px 1px #000;
	overflow: hidden;
	display: inline-block;
	float: left;
}
.upper-container{
	height: 200px;
	background: #7F00FF;
}
.image-container{
	background: white;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	padding: 5px;
	transform: translate(50px,50px);
}
.image-container img{
	width: 170px;
	height: 170px;
	border-radius: 50%;
}
.lower-container{
	height: 170px;
	background: #FFF;
	padding: 10px;
	padding-top: 40px;
	text-align: center;
}
.lower-container h3, h4{
	box-sizing: border-box;
	line-height: .6;
	font-weight: normal;
}
.lower-container h3, h4 {
	color: #7F00FF;
	opacity: .6;
	font-weight: bold;
}
.lower-container p{
	font-size: 20px;
	color: #008080;
	margin-bottom: 30px;
}
.lower-container .btn{
	padding: 12px 20px;
	background: #7F00FF;
	border: none;
	color: white;
	border-radius: 30px;
	font-size: large;
	text-decoration: none;
	font-weight: bold;
	transition: all .3s ease-in;
}
