.gallery{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1vh;

}

.gallery .thumb{
  margin: 1%;
  height: 150px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.gallery .thumb:hover{
  transform: scale(1.25);
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -o-transform: scale(1.25);
  transition: .2s ease-in-out;
  cursor: pointer;
}

.gallery .thumb img{
  max-height: 150px;
  max-width: 150px;
  text-align: center;
}

#slideshow{
  transform: scale(0,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top:0;
  height: 100vh;
  width: 100%;
  background-color: rgba(40, 40, 40, 0.9);
  z-index: 100;
  transition: transform 0.5s ease;
  overflow: hidden;
}

#slideshow img{
  max-height: 80vh;
}

.arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  width: 0;
  height: 0;
  border-style: solid;
}



#arrow-left {
  border-width: 30px 40px 30px 0;
  border-color: transparent #fff transparent transparent;
  left: 0;
  margin-left: 30px;
}

#arrow-left:hover{
  border-color: transparent #f6b609 transparent transparent;
}

#arrow-right {
  border-width: 30px 0 30px 40px;
  border-color: transparent transparent transparent #fff;
  right: 0;
  margin-right: 30px;
}

#arrow-right:hover{
  border-color: transparent transparent transparent #f6b609;
}

#close{
  cursor: pointer;
  position: absolute;
  top: 5%;
  right: 5%;
  color: white;
  font-size: 30px;
  font-family: 'Montserrat', sans-serif;
}

#close:hover{
  color: #f6b609;
}

.slide{
  display: none;
}

.active{
  display: block;
}
