body{
	margin: 0;
	padding: 0;
	background-color: #030303; 
	font-family: sans-serif;
}


#nav{
	width: 100%;
	position: relative;
	margin-top: 0;
	background-color: rgba(0,0,0,0.95);
	text-align: center;
}

#nav ul{
	padding: 0;	
	margin: auto;	
	list-style-type: none;
}

#nav li{
	display: inline-block;
}

#nav a{
	display: block;
	padding: 24px;
	padding-top: 26px;
	color: #919191;
	text-decoration: none;
	text-align: center;
	border-bottom: 2px solid rgba(255, 255, 255, 0);
	transition: color 0.2s, border 0.2s;
}

#nav a:hover{
	color: #ffffff;
	border-bottom-color: #ffffff;
}


.container{
	width: 100%;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

.item{
	width: 70%;
	margin: auto;
	margin-top: 2%;
	margin-bottom: 2%;
	color: #ffffff;
	line-height: 1.8;
}

.item p{
	font-size: 16px;
}

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

.item a:hover{
	text-decoration: underline;
}

.item h1{
	margin-top: 10%;
	text-align: center;
}

.creditData{
	float: right;
}

.hero-image{
	background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("images/hero-image.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-inner{
	color: #ffffff;
	text-align: center;
}

.hero-inner h1{
	font-family: "logoFont", sans-serif;
	font-weight: normal;
	font-size: 20vw;
	letter-spacing: 20px;
	margin-top: 0;
    margin-bottom: 0.2em;
}

.hero-inner h2{
	font-family: "Carlito", sans-serif;
	font-size: 4vw;
	font-weight: normal;
	margin-top: 0.1;
    margin-bottom: 0em;
}

.footer{
  bottom: 0;
  width: 100%;
  background-color: #000;
  color: #ffffff;
  text-align: center;
}

.footer a{
	text-decoration: none;
	color: #ffffff;
}

.footer a:hover{
	transition: 0.1s;
	text-decoration: underline;
}

.row{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.row a{
	margin: auto;
	margin-top: 2%;
	margin-bottom: 2%;	
}

.creditImg{
	width: 250px;
	height: 250px;
}

@font-face{
	font-family: logoFont;
	src: url(fonts/OldeEnglish.ttf);
}

@font-face{
	font-family: Carlito;
	src: url(fonts/Carlito.ttf);
}

#about{
	background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(images/potrait.jpg);
	background-repeat: no-repeat;
	background-position: center;
	width: 100vw;
	height: 100vh;
}

#contact{
	background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(images/potrait2.jpg);
	background-repeat: no-repeat;
	background-position: center;
	width: 100vw;
	height: 100vh;	
}