.sliderBtn {
  position: absolute;
  background-color: rgba(67, 37, 4, 0.5);
  border:none;
  color: white;
  padding: 1rem;
  top:auto;
  z-index: 999;
  font-family: Nunito;
  font-weight: 600;
  font-size: 1.5rem;
  cursor: pointer;
  outline: none;
}
.sliderBtn:hover {
  background-color: rgb(137, 53, 15);
}
#prev {
  left: 0;
}
#next {
  right: 0;
}
.slide {
  display: none;
}
.show {
  display: block;
  animation: fadein 1s ease-in-out 0s 1 normal forwards;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide p {
  padding: 1rem 0;
  background-color: white;
  color: black;
  text-align: center;
  font-family: Nunito;
  font-weight: 600;
}
img {
  max-width: 100%;
  border-radius: 0.4rem 0.4rem 0 0;
  display: block;
  margin: auto;
}
@media screen and (max-width: 722px) {
  #slideContainer {
    width: 100%;
  }
  .sliderBtn
   {
    padding: 0.5rem;
    font-size: 1rem;
  }
  .slide p {
    padding: 0.5rem 0;
  }
}
