@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Source Sans Pro', sans-serif;
}

body {
	background-color: #dff9fb;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

h1 {
	text-align: center;
	margin-top: 2rem;
}

p {
	text-align: center;
	margin-bottom: 4rem;
}

.pricing {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1200px;
	margin: 2rem auto 0;
	padding: 0 1rem;
}

.pricing .plan {
	background-color: #fff;
	padding: 1.5rem;
	margin: 18px;
	border-radius: 5px;
	text-align: center;
	transition: 0.3s;
	cursor: pointer;
	width: 340px;
	flex-shrink: 0;
}

.pricing .plan h2 {
	font-size: 22px;
	margin-bottom: 12px;
}

.pricing .plan .price {
	margin-bottom: 0.5rem;
	font-size: 30px;
}

.pricing .plan ul.features {
	list-style-type: none;
	text-align: left;
	font-size: 0.9rem;
	margin-top: 0.1rem;
}

.pricing .plan ul.features li {
	margin: 6px 4px;
	line-height: 1.3;
}

.pricing .plan ul.features li .fas {
	margin-right: 4px;
}

.pricing .plan ul.features li .fa-check-circle {
	color: #6ab04c;
}

.pricing .plan ul.features li .fa-times-circle {
	color: #eb4d4b;
}

.pricing .plan button {
	border: none;
	width: 100%;
	padding: 12px 35px;
	margin-top: 1rem;
	background-color: #6ab04c;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

.pricing .plan.popular {
	border: 2px solid #6ab04c;
	position: relative;
	transform: scale(1.08);
}

.pricing .plan.popular span {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #6ab04c;
	color: #fff;
	padding: 4px 20px;
	font-size: 18px;
	border-radius: 5px;
}

.pricing .plan:hover {
	box-shadow: 5px 7px 67px -28px rgba(0, 0, 0, 0.37);
}
