body {
  background-color: #0B0B0C;
  opacity: 1;
  background-image:  linear-gradient(#0d2324 1.4000000000000001px, transparent 1.4000000000000001px), linear-gradient(to right, #0d2324 1.4000000000000001px, #0B0B0C 1.4000000000000001px);
  background-size: 32px 32px;
  font-size: 16px;
  color:#EEEEEE;
  font-family: firasans;
  text-align:justify;
  line-height:2;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/*-- Headliner --*/
h1{
  color:white;
  font-size:50px;
  font-weight:normal;
  text-align:center;
  font-family:pixantiqua;
  margin:5px;
}

h2 {
  color:white;
  font-size:25px;
  font-weight:normal;
  margin: 20px 0px 10px 0;
  font-family:pixantiqua;
}

h3{
  color:white;
  font-size:18px;
  font-weight:normal;
  font-family:pixantiqua;
  margin-bottom: 1px;
}

/*-- Font --*/
@font-face {
  font-family: firasans;
  src: url(fonts/FiraSans.ttf);
}

@font-face {
  font-family: pixantiqua;
  src: url(fonts/PixAntiqua.ttf);
}
  
/*-- Links --*/
a:link {
  color: lightskyblue;
  text-decoration:none;
}

a:visited {
  color: lightskyblue;
  text-decoration:none;
}

a:hover {
  color: lightskyblue;
  text-decoration: none;
}


a:active {
  color: lightskyblue;
  text-decoration:none;
}

/*-- Header --*/
.header{
    margin-top:10px;
    margin-bottom:10px;
    display: flex;
    justify-content: center;
}

/*-- Buttons --*/
.button{
  margin: 0px 10px 10px 0px;
  padding: 20px;
  border-radius:20px;
  font-family: firasans;
  background-color: #1A1A1E;
  border:none;
  color:lightskyblue;
  cursor:pointer;
}

.button a{
  text-decoration: none;
}

.button a:hover{
  color: lightskyblue;
  text-decoration:none;
}


/*-- Flex --*/
.flex{
  display: flex;
  justify-content: center;
  max-width:100%;
  column-gap:20px;
}

/*-- Main --*/
.main{
  height: 100%;
  background-color:#1A1A1E;
  width:750px;
  padding: 50px;
  border-radius:10px;
  order:1;
}


/*-- Shelf --*/
.shelf{
  height: 100%;
  background-color:#1A1A1E;
  width:440px;
  padding: 50px;
  border-radius:10px;
  order:2;
}


/*-- Columns --*/
.column {
  float: left;
  padding:0px;
}

.left {
  width: 50%;
}

.right {
  width: 50%;
}

/*-----------------Mobile-----------------*/
  @media only screen and (max-width: 800px) {
    .flex {
        flex-direction: column;
    }
}

@media only screen and (max-width: 500px){
      .flex{max-width: 100%;
      height:auto;
}
}

/*-- Image Gallery --*/
    .image-gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: left;
      align-items: center; /* Center the images vertically */
      margin-top: 20px;
    }
    
    .image-gallery img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 5px;
      margin: 5px;
      cursor: pointer;
      opacity: 0.8;
      transition: 0.3s;
    }
    
    .image-gallery img:hover{
       opacity:1.0;
       transition: 0.3s;
       transform: scale(1.05);
    }
    
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 999;
      justify-content: center;
      align-items: center;
    }
    
    .lightbox-image {
      max-width: 90%;
      max-height: 90%;
      border-radius: 5px;
    }