/*box sizing fix (USE EVERY TIME)*/
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
		padding: 0; 
	margin: 0;
}
/* end box sizing fix
-------------------------------------*/
/* body
-------------------------------------*/
body {
	background: #967657;
	font-weight: 300;
	padding: 0; 
	margin: 0;
}
p {
	font-family: 'Josefin Sans';
}
h1 {
	font-family: 'Architects Daughter';
	font-weight: normal;
	font-size: 56px;
	font-style: normal;
}
h2 {
	font-family: 'Indie Flower', cursive;
	font-size: 56px;
	font-weight: normal;
}
h3,
h4, 
h5,
h6	{
	font-family: 'Indie Flower', cursive; 
    font-size: 32px;
    font-weight: normal;
}
p {
	font-size: 18px;
	line-height: 1.5;
	font-weight: normal;
}
a {
	color: #8EAF9D;
	padding: 10px;
}
a:hover { 
  color: #967657;
}
.about:after {
	content: "";
	display: table;
	clear: both;
}
.about img {
	float: right;
	overflow: hidden;
	border-radius: 50%;
	border: 10px dashed #8EAF9D;
	margin-left: 20px;
	width: 400px;
	height: 400px;
}

/* Combine selectors
------------------------------------*/
header, 
section, 
footer {
	padding: 100px 150px;
}
/* header
-------------------------------------*/
header {
	background: gray;
}
header h2 {
	font-style: italic;
}
strong {
	color: white;
	font-weight:bold;
}
/* loves should have 	background: #8EAF9D;
-------------------------------------*/
.loves {
	background: url(../../images/old_map.jpg);
	background-attachment: fixed;
	background-size: cover;
}
.loves, 
footer {
	text-align: center;
}
.loves img {
	border-radius: 50px;
	margin-left: 10px;
	margin-top: 22px;
	border: 10px ridge #967657;
}
/* footer
-------------------------------------*/
footer {
	background:#0F110C;
	color: #CECCCC;
	padding: 0; 
	margin: 0;
}
.linkedin:hover {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}