@import url('https://fonts.googleapis.com/css?family=Roboto');

body {
	background: #7fcbd7;
	font-family: 'Roboto', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
	margin: 0;
}

.card {
	width: 96%;
	max-width: 400px;
	background: #ffffff;
	border-radius: 6px;
	overflow: hidden;
	-webkit-box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.5);
}

.card .top {
	display: flex;
	padding: 30px 20px 30px 20px;
	box-sizing: border-box;
}

.card .top .left {
	width: 180px;
	display: inline-flex;
	align-items: flex-start;
	justify-content: center;
}

.card .top .right {
	padding-left: 20px;
	display: inline-flex;
	flex-direction: column;
}

.card .top .left .image {
	background: url(http://img07.deviantart.net/3dee/i/2012/128/2/5/generic_spiderman_portrait_by_susyspider-d4yx57i.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.card .top .right .main div {
	color: red;
	margin-bottom: 20px;
}

.card .top .right .description {
	color: lightgray;
}

.bottom {
	height: 60px;
	background: #c83b4c;
	display: flex;
	justify-content: space-around;
	align-items: center;
	color: #ffffff;
}

.card .top .right h1 {
	margin: 0;
	font-size: 1.5em;
}
