img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.carousel {
  margin: auto;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  height: auto;
  width: 500px;
  overflow: hidden;
}

.image-container {
  display: flex;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}

.buttons-container {
  display: flex;
  justify-content: space-between;
}

.buttons-container i {
  font-size: 25px;
}

.btn {
  border-radius: 10px;
  cursor: pointer;
  margin: auto;
  width: 49.5%;
  height: 50px;
}

.btn:hover {
  opacity: 0.9;
}

.btn:focus {
  outline: none;
}

@media screen and (max-width: 780px) {
  .carousel {
    position: relative;
    top: 70px;
  }
}

@media screen and (max-width: 480px) {
  .carousel {
    position: relative;
    top: 70px;
    width: auto;
  }
}
