html {
	background: url(/img/pixel-heart.png) repeat center center;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
	margin: 0; 
}
p, span, div {
	font-family: 'Spartan', sans-serif;
}

body {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	background-color: rgba(255, 255, 255, 0.75);
	overflow-x: hidden;
	min-width: fit-content;
}
.content-width {
	box-sizing: content-box;
	max-width: 1100px;
	margin: 0 auto;
}
header {
	text-align: center;
	background: #8FC0A9;
	border-bottom: solid 8px #68B0AB;
	padding: 20px 0 30px 0;
	min-width: fit-content;
}
.screen-readers {
	margin: 0;
    padding: 0;
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    text-indent: -9999em;
    text-align: left;
    overflow: hidden;
}
header .logo {
    width: 400px;
    margin-bottom: 10px;
}
header h1 {
    color: #FAF3DD;
    font-size: 53pt;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
header p {
    font-family: 'Spartan', sans-serif;
    font-size: 11pt;
    letter-spacing: 3pt;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}
content {
	height: auto !important;
	display: flex;
	flex-direction: row;
	padding: 30px;
	max-width: 100%;
}
article {
    flex-grow: 1;
	padding-right: 10%;
}
.about{
	margin-bottom: 50px;
}
.about a {
	font-weight: bold;
	color: #696D7D;
}
.photo {
    margin-bottom: 30px;
}
aside {
    width: 40%;
}
footer {
	background: #696D7D;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #fff;
	font-size: 8pt;
}

@media only screen and (max-width: 600px){
	content {
		flex-direction: column;
		width: 100%;
		padding-left: 30px;
		padding-right: 30px;
	}
	.content-width {
		flex-grow: 1;
		max-width: fit-content;
	}
	article {
		padding-right: 0;
	}
}