body {
  margin: 0;
  padding: 0;
  display: flex;
  background-color: rgb(250, 250, 250);
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.carousel-container {
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 4px 4px 16px rgb(225, 225, 225);
}

.photo-container {
  display: flex;
  width: 500px;
  height: 500px;
  border-radius: 20px;
  scroll-behavior: smooth;
  display: flex;
  overflow: hidden;
}

.photo-container img {
  min-width: 500px;
  min-height: 500px;
}

.button-container {
  justify-content: center;
  height: 60px;
  width: 500px;
  display: flex;
}

.button {
  margin: 20px 10px 0 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  background-image: linear-gradient(#fff, rgb(247, 247, 247));
  box-shadow:
    0 1px 5px rgb(177, 176, 176),
    inset 1px 1px 2px rgb(255, 255, 255);
}
