/* RESET + BASE */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {

	color: #333;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

main, .content {
  flex: 1 0 auto;
  background-image: url('../images/marble.jpg') !important;
	background-repeat: no-repeat !important;  /* prevents tiling */
	background-size: cover !important;        /* ensures full coverage */
	background-position: center center !important;
}

footer {
  flex-shrink: 0;
  margin-top: auto;
}

html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* main page content grows */
.page-wrapper > *:not(footer) {
  flex-shrink: 0;
}


