@font-face {
font-family: "guise";
src: 	url("../assets/guise.woff") format("woff"),
		url("../assets/guise.woff2") format("woff2"),
		url("../assets/guise.otf") format("opentype");
}

html {
  height: 100%;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1;
  margin: 0;
}

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

body {
  height: 100%;
  overflow: auto;
  font-family: 'guise', Arial, sans-serif;
  letter-spacing: 2px;
  line-height: 9px;
  margin: 0;
  background-color: black;
  color: white;
  -webkit-text-size-adjust: 100%;
}
h1{
	font-size: 0.6em;
	letter-spacing: 0.2em;
}
p{
	font-size: 0.75em;
}
a { 
  color: #ffffff; 
  text-decoration: none; 
  transition: 0.5s;
  }
  
a:hover 
 { 
  color: #001263; 
 }

header {
  position: fixed;
  z-index: 75;
  top: 40%;
  left: 0;
  width: 100%;
}
header h1 {
  position: relative;
  margin: 0;
}
header img {
  display: block;
  margin: 0 auto;
  width: 50%;
  height: auto;
  -webkit-transform: translateY(-64%);
          transform: translateY(-64%);
}
main {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  z-index: 1;
}
main > img.current {
  z-index: 10;
  opacity: 1;
}
main > img.next {
  z-index: 5;
}
main > img.next,
main > img.previous,
main > img.before,
main > img.after {
  opacity: 0;
}
footer {
  position: fixed;
  z-index: 100;
  width: 100%;
  left: 0;
  bottom: 16px;
  bottom: 3rem;
}
footer > * {
  margin: 0 auto;
  max-width: 50em;
  padding: 0 1em;
  text-align: center;
  line-height: 1.5;
}

@media only screen and (max-width: 1200px) {
  header {
	top: 10%;
  }
  header img {
  	width: 60%;
  }
  
}


@media only screen and (min-width: 768px) {
  html {
    font-size: 1.25em;
  }
}

@media only screen and (max-width: 768px) {
  html {
    font-size: 1.1em;
  }
  header {
	top: 8%;
  }
  header img {
  	width: 70%;
  }
  
}
@media only screen and (max-width: 425px) {
	  html {
    font-size: 0.95em;
  }
  header {
	top: 7%;
  }
  header img {
  	width: 83%;
  }
	
	}


