body
{ /* Location of the image */
background-image: url(../images/glasses-of-wine-in-mountains-fhd.jpg);

/* Background image is centered vertically and horizontally at all times */
background-position: center center;

/* Background image doesn’t tile */
background-repeat: no-repeat;

/* Background image is fixed in the viewport so that it doesn’t move when the content’s height is greater than the image’s height */
background-attachment: fixed;

/* This is what makes the background image rescale based on the container’s size */
background-size: cover;

/* Set a background color that will be displayed while the background image is loading */
background-color: #464646;
}

h1
{
font-family: 'Montserrat', serif;
position: relative;
top: 80px;
text-align: center
}


	.container{
		width: 80%;
		margin: 0 auto; /* Center the DIV horizontally */
	}
.fixed-header, .fixed-footer{
		width: 100%;
		position: fixed;
		background: #333;
		padding: 10px 0;
		color: #fff;
	}
	.fixed-header{
		top: 0;
	}

	.fixed-footer{
		bottom: 0;
	}