.ambient-player {
    display: flex;
    justify-content: center;
  }
  .main,
  .decoy {
      max-width:500px;
      width:100%;
    max-height: 50vh;
    border-radius: 12px;
  }
  .decoy {
    position: absolute;
    filter: blur(64px);
    transform: scale(.9, 1.5);
    z-index: -1;
    opacity: 0.6;
  }
  
  .blinks{
    -webkit-animation: blinker 1s infinite;
}
  @-webkit-keyframes blinker {
    from { opacity: 1.0; }
    to { opacity: 0.5; }
  }
  img {
    pointer-events: none;
}

#myBtn {
  display: none; /* Hide the button by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 9999999999999999999999999999999; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #555; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: black; /* Add a dark-grey background on hover */
}

.footer-copyright{
    width: 100%;
height: 42px;
background: #292929;
}


#baguetteBox-overlay .full-image img {
    display: inline-block;
    width: auto;
    height: auto;
    max-height: 500px;
    max-width: 100%;
    vertical-align: middle;
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,.6);
    -moz-box-shadow: 0 0 8px rgba(0,0,0,.6);
    box-shadow: 0 0 8px rgba(0,0,0,.6);
}



.gallery-cat {
  overflow-y: hidden;
  width: 100%;
  max-width: 300px;
  height: 600px;
  padding: 0px!important;
  margin-left: 8px;
  margin-right: 8px;
  background: rgba(0,0,0,0.24);
}

.galley-info {
  z-index: 99999;
  width: 100%;
  height: 100%;
  padding-bottom: 79px;
  background: rgba(0,0,0,0.6);
}

.galley-info:hover {
  animation: darken 2s forwards;
}

@keyframes showup {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0px);
  }
}

.gallery-cat:hover {
}

@keyframes darken {
  0% {
    background: rgba(0,0,0,0.6);
  }
  100% {
    background: transparent;
  }
}

.gal-img {
max-width: 355px;
    object-fit: cover;
    z-index: 0;
    width: 100%;
    position: absolute;
    max-height: 603px;
    height: 100%;
}

.gal-img:hover {
}

@keyframes brig {
  from {
    filter: brightness(75%);
  }
  to {
    filter: brightness(100%);
  }
}
