.carousel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.car-pane.car-hidden {
  flex-basis: 0;
  overflow: hidden;
  transform: scale(0, 1);
}

.car-pane {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.5s;
}

.car-button {
  padding: 0;
  background-color: white;
  border: 1px solid black;
  height: 35px;
  width: 35px;
  border-radius: 35px;
  box-shadow: inset 0 0 6px black;
  z-index: 1;
}

.car-button-left {
  position: absolute;
  left: 10px;
}

.car-button-right {
  position: absolute;
  right: 10px;
}

.car-nodules {
  position: absolute;
  bottom: 10px;
}

.car-nodule-button {
  height: 15px;
  width: 15px;
  margin: 0 10px;
}

.carousel button:active {
  transform: scale(0.95);
  transition: transform 0.1s;
}
