#gallery {
  width: 90%;
  margin-left: auto;
}

#gallery a {
    margin-top: 50px;
    margin: 20px;
    
    width: 360px;
    height:360px;
    display: inline-block;
    text-decoration: none;

    box-shadow: 7.3px 14.6px 14.6px hsl(0deg 0% 0% / 0.27);
}

#first{
    background: url('/scroller-thumbnails/world.webp');
  }

  #second{
    background: url('/scroller-thumbnails/cool-stuff.webp');
  }

  #third{
    background: url('/scroller-thumbnails/memoir.webp');
  }

  #fourth{
    background: url('/scroller-thumbnails/critique.webp');
  }

  #fifth{
    background: url('/scroller-thumbnails/lemonvasion.webp');
  }

  #sixth{
    background: url('/scroller-thumbnails/vinyl.webp');
  }

  #seventh{
    background: url('/scroller-thumbnails/mothman.webp');
  }

  #eighth{
    background: url('/scroller-thumbnails/pa.webp');
  }

  #ninth{
    background: url('/scroller-thumbnails/partum.webp');
  }

  #tenth{
    background: url('/scroller-thumbnails/mental-health.webp');
  }

  #eleventh{
    background: url('/scroller-thumbnails/fizz.webp');
  }

  #twelth{
    background: url('/scroller-thumbnails/icon.webp');
  }

  #thirteenth{
    background: url('/scroller-thumbnails/social.webp');
  }

  #fourteenth{
    background: url('/scroller-thumbnails/news.webp');
  }

  #fifthteenth{
    background: url('/scroller-thumbnails/event.webp');
  }

  #gallery a div {
    transition: all 0.4s ease-out;
    opacity: 0;
    height: 100%;
    color: #fff;
    text-align: center;

    font-size: 1.5em;
    background-color: rgba(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "bebas-neue-pro-expanded", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  #gallery a:hover div {
    opacity: 1;
  }