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-family: firasans;
  line-height:2;
  color:white;
  max-width: 1440px;
  font-size:18px;
  margin-left: auto;
  margin-right: auto;
}

/*-- Font --*/
@font-face {
  font-family: firasans;
  src: url(fonts/FiraSans.ttf);
}

@font-face {
  font-family: pixantiqua;
  src: url(fonts/PixAntiqua.ttf);
}

/*-- Headliner --*/
h2{
  color: white;
  font-size:25px;
  font-family: pixantiqua;
}

/*-- Header --*/
.header{
  display:flex;
  justify-content:center;
  margin-top:10px;
  margin-bottom:10px;
}
/*-- Queue --*/
.queue{
  justify-content:center;
  background-color: #1A1A1E;
  padding:20px;
  border-radius:10px;
  margin-bottom:20px;
}

/*-- Flex --*/
.flex{
  display: flex;
  justify-content: center;
  background-color: #1A1A1E;
  padding:20px;
  border-radius:10px;
}

/*-- Info --*/
.info{
  padding:20px;
}

/*-- Links --*/
a{
  color:lightskyblue;
  text-decoration:none;
}

a:hover{
  text-decoration:none;
}

a:active{
  color:lightskyblue;
  text-decoration:none;
}

/*-- Button --*/
.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;
}


/*-- Columns --*/
.column {
  float: left;
  padding:0px;
}

.left {
  width: 50%;
}

.right {
  width: 50%;
}

/*-- Prices --*/
.price{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:20px;
}
  
.human, .furry, .extra{
  width:500px;
  background-color: #1A1A1E;
  margin-top:20px;
  padding:20px;
  border-radius:10px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  text-align: left;
  padding: 10px;
}

tr:nth-child(even) {
  background-color: #232323;
}

/*-- Details --*/
summary {
  background-color:lightgrey;
  color:black;
  padding:10px;
  margin:20px;
  border-radius:20px;
  margin-top:10px;
  margin-bottom:10px;
}

/*-- Image Gallery --*/
    .image-gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }
    
    .image-gallery img {
      width: 300px;
      height: 300px;
      object-fit: cover;
      border-radius: 5px;
      cursor: pointer;
      margin:10px;
      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;
    }
    
/*-- 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;
}
}