@import url("https://fonts.googleapis.com/css?family=Roboto");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

img {
  width: 500px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
body .carousel {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  height: 530px;
  width: 500px;
  overflow: hidden;
}
body .carousel .image-container {
  display: flex;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out;
}
body .carousel .buttons-container {
  display: flex;
  justify-content: space-between;
}
body .carousel .buttons-container .btn {
  background-color: rebeccapurple;
  color: #fff;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  width: 49.5%;
}
body .carousel .buttons-container .btn:hover, body .carousel .buttons-container .btn :focus {
  opacity: 0.9;
  outline: none;
}/*# sourceMappingURL=index.css.map */