body {
  background-color:black;
  font-size: 16px;
  color: #9e9e9e;
  font-family: firasans;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/*-------Font------*/
@font-face {
  font-family: "firasans";
  src: url(fonts/FiraSans.ttf) format("truetype");
}

/*-------Headliners------*/
h1{
  color: white;
  padding-top: 5px;
  text-align: center;
}

h2{
  color:white;
  text-align:center;
  margin:10px;
}


/*-------Header-------*/
.header{
  display:flex;
  justify-content:center;
  margin-top:50px;
  margin-bottom:50px;
}

/*-------Main Content------*/
.flex{
  background-color: #0c0c0c;
  display:flex;
  flex-wrap:wrap;
}

.gallery{
  margin-left: auto;
  margin-right: auto;
}


/*-----------------Navigation-----------------*/
.nav{
    background: #0c0c0c;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 10px;
    max-width: 1440px;
}

.nav a{
  font-weight: bold;
  font-size: 20px;
  color: #A47DAB;
  text-decoration: none;
  margin: 5px;
}


.nav a:hover{
  text-decoration:none;
}