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{
  padding: 20px 75px 20px 75px;
  width: 100%;

}

blockquote{
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}

/*-----------------Big----------------*/
.big{
  background: lightgrey;
  padding: 25px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  color: black;
  font-size: 18px;
  margin: 10px;
}

.big p{
}

/*-----------------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;
}



/*-------Image Gallery-------*/
        #image-gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .gallery-image {
            width: 250px;
            height: 250px;
            margin: 10px;
            cursor: none;
        }
        .thumbnail-image{
          border-radius:5px;
          margin:10px;
          cursor: pointer;
          opacity: 0.7;
          transition: 0.3s;
        }
        
        .thumbnail-image:hover{
          opacity:1.0;
          transition: 0.3s;
          transform: translateY(-10px);
        }

        #lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 9999;
        }

        #lightbox-image {
            display: block;
            margin: auto;
            max-width: 80%;
            max-height: 80%;
            margin-top: 10%;
            cursor: pointer;
        }