#main{
	display: flex;
	min-height: 85vh;
}

body {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

body::after {
  content: "";
  background: url(../images/background.jpg) no-repeat center center fixed; 
  background-size: cover;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}


h2 {
  color: white;
  font-size: 5vw;
  font-family: 'NewYork';
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  opacity: 0.4;
  white-space: nowrap;
  z-index: 1;
}

footer{
    margin-bottom: 1vh;
    font-family: 'Corbel';
    font-size: 2vh;
    text-align: center;
    color: #9e9e9e;
    z-index: 1;
}


@media only screen and (max-width: 1000px) {

	#main{
		min-height: 99vh;
	}
	
	footer{
		margin-bottom: 0vh;
	}
}
