.carousel {
  width: 345px;
  height: 200px;
  position: relative;
  margin-top: 0px;
  margin-bottom: 65px;
}

.carousel2 {
  left: 8px;
  width: 345px;
  height: 200px;
  position: relative;
  margin-bottom: 120px;
}

.carousel > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slide {
  margin-top: 15px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 20ms;
}

.slide > img {
  border: solid #d4aa6e 3px;
  border-radius: 12px;
  background-color: #d4aa6e;
  display: block;
  width: 350px;
  height: 250px;
  object-position: center;
  box-shadow: -3px 3px 2px #000000, 0 3px 3px #000000;
}

.slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 10ms;
  margin-left: -2px;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  background: none;
  border: solid 2px;
  font-size: 4rem;
  align-items: center;
  top:110%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  border-radius: 0.7rem;
  background-color: rgba(0, 0, 0, .1);
  box-shadow: -3px 3px 2px #000000, 0 3px 3px #000000;
}

.carousel-button:hover,
.carousel-button:focus {
  color: white;
  background-color: rgba(0, 0, 0, .2);
}

.carousel-button:focus {
  outline: 2px solid goldenrod;
}

.carousel-button.prev {
 left: 1.5rem;
 color: #d4aa6e;
}

.carousel-button.next {
 right: 1.5rem;
 color: #d4aa6e;
}