.gallery-container {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  color: white;
  background-image: linear-gradient(180deg, rgba(15, 15, 15, 0.8603816526610644) 0%, rgba(15, 15, 15, 0.19931722689075626) 17%, rgba(15, 15, 15, 0.1881127450980392) 84%, rgba(15, 15, 15, 0.8631827731092436) 100%), url(../assets/bg-3.webp);
  background-position: center;
  background-size: cover;
  padding: 0 10px 0 10px;
}

.gallery-container>div:nth-child(1) {
  font-size: 25px;
  font-weight: bold;
}

.gallery-container>div:nth-child(2) {
  border: 3px solid white;
  border-radius: 22px;
  padding: 10px 20px 10px 20px;
  transition: all 200ms;
  cursor: pointer;
  animation: glowGallery 2s linear infinite;
}

@keyframes glowGallery {

  0%,
  100% {
    box-shadow: 0 0px 36px #ff77e86b;
  }

  50% {
    box-shadow: 0 0px 36px #ff715a;
  }
}


.gallery-container>div:nth-child(2):hover {
  background-color: rgb(255, 255, 255);
  color: black;
}

.gallery-container>div:last-child {
  background: linear-gradient(to top, #ff715a, #ffd375);
  box-shadow: 0 0px 36px rgb(255 211 117 / 50%);
  padding: 12px 24px 12px 24px;
  color: black;
  font-weight: bolder;
  border-radius: 24px;
  font-size: 13px;
  animation: glowButton 3s normal infinite;
  cursor: pointer;
}