
body {
    background-color: black;
		color: white;
		max-width: 100%;
	  min-width: 900px;
		 
}

@font-face {
font-family: IndustriaLTStdSolid;
src: url("./IndustriaLTStdSolid.otf") format("opentype");
}

a {
    color: white;
}

h5 {
	  font-family: "IndustriaLTStdSolid", "Verdana", Ariel;
    font-size: 2em;
		font-weight: 300;
}

h4 {
    font-family: "IndustriaLTStdSolid", "Verdana", Ariel;
    font-size: 4em;
		font-weight: 300;
}

h3 {
    font-family: "IndustriaLTStdSolid", "Verdana", Ariel;
    font-size: 5em;
		font-weight: 300;
}

h1 {
font-family: "IndustriaLTStdSolid", "Verdana", Ariel;
    font-size: 28em;
		font-weight: 300;

}





.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:3s;
  -moz-animation-duration:3s;
  animation-duration:3s;
}