/* GLOBAL STYLES
-----------------------------------------*/
html, body {
    height: 100%;
} /*---- makes body the size of browser window ---*/

html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

body {
	background: white;
	padding: 0;
	margin: 0;
	font-family: 'Cantarell', sans-serif;

}
h1 {
	/* font-family: 'Rock Salt', cursive; */
  font-family: sans-serif;
}

h1, h2 {
    font-weight: 300;
    text-transform: uppercase;
    margin: 0; /* removes default space */
    line-height: 1.5; /* tightens up the space between the headings */
}
a {
 color: #708090;
 text-decoration: none; /* removes default underline */
}

.highlight {
    color: #708090;
}
header {
	position:fixed;
	top: 0;
	width: 100%;
}

header h1 {
    font-size: 36px;
    padding:20px;
}
header h2 {
    font-size: 26px;
}
footer {
	text-align: center;
}

.copyright {
	position: absolute;
	bottom:0;
	width:100%;
}


/* HOME PAGE
-----------------------------------------*/
.home {
	background: url(../images/PrinceWreckaStowGif.gif) no-repeat 50% 64%;
	background-size: cover;
}

