@import url("https://fonts.googleapis.com/css2?family=Macondo+Swash+Caps&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Macondo Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
}

.slider-wr {
  width: 600px;
  overflow: hidden;
  margin: 50px auto;
  border-radius: 10px;
  border: 1px solid rgb(142, 119, 97);
}
.slider {
  display: flex;
  transition: transform 2s ease;
}
.slide {
  width: 100%;
  height: 400px;
}
.content {
  display: flex;
  max-width: 700px;
  margin: 0 auto;
}
.button-next {
  border: none;
  background-color: transparent;
  color: rgb(82, 51, 41);
  font-size: 40px;
}
.button-prev {
  border: none;
  background-color: transparent;
  color: rgb(82, 51, 41);
  font-size: 40px;
}
.button-next:hover {
  color: rgb(120, 40, 14);
  font-size: 43px;
}
.button-prev:hover {
  color: rgb(120, 40, 14);
  font-size: 43px;
}
