/*Colors and fonts */
body{
	background: rgb(230, 230, 230);
	color: rgb(80, 80, 80);
	font-family: "Balsamiq Sans", sans-serif;
	font-size: 17px;
}
h1, h2, h3 {
	font-family: "Balsamiq Sans", sans-serif;
}
h1 {
  color: #F57799;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 32px;
 }
h2 {
    color: #E82561;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 20px;
}
a {
	font-family: "Petit Formal Script", cursive;
	text-decoration: none;
	color: #FDC3A1;
	font-weight: 600;
	font-size: 16px;
	transition: color 0.3s ease;
}
a:hover {
	color: #F57799 !important;
	text-decoration: none;
}

/* Custom design with class */

.container {
	width: 700px;
	margin: 40px auto;
}

.card-white {
	background-color: white;
	padding: 40px;
	box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
	border-radius: 4px;
	margin: 20px 0px;
	text-align: center;
}

.img-circle {
	border-radius: 50%;
}

.btn-blue:hover {
	background-color: pink;
	color: white;
	padding: 10px 20px;
	border-radius: 4px;
	margin-top: 10px;
}

.list-inline {
	list-style: none;
	padding-left: 0px;
}

.list-inline li {
	display: inline;
	padding: 10px;
}
.list-inline i {
	font-size: 50px;
	color: rgb(230, 230, 230);
}
.list-inline i:hover {
	color: pink;
}

/*Design adjustments using id */
#introduction p {
	margin-bottom: 40px;
}
