* {
  margin: 0;
}

html, body{
	overflow: hidden; /* Hide vertical scrollbar */
}


.page {
  height: 100vh;
  width: 100vw;
  background: no-repeat center center;
  background-size: cover; /* This ensures the background covers the entire element */
  background-image: url('https://cloud.oilcan.co/images/hunters.jpg'); /* URL of the background image */
}

a {
	color: black;
}

.title {
  padding-top: 1rem;
	font-family: 'Crimson Pro', serif;
	font-size: 4rem;
	color: black;
}

nav, footer {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
	z-index: 100;
}

nav > h1:only-child {
  text-align: center;
}

footer {
  background-color: rgb(235, 235, 235);
  height: 4rem;
  bottom: 0rem;
  justify-content: space-between;
	border-top: 3px black solid;
	font-family: 'Crimson Pro', serif;
	font-size: 1.75rem;
	color: black;
}

#address {
  font-size: 1rem;
}

footer > * {
  align-self: center;
  padding: 0 2rem;
}

@media only screen
  and (max-width: 680px)  {
    .title {
      font-size: 3rem;
    }
  	footer {
      font-size: 1.25rem;
    }
}
