.carousel-container {
  display: none;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.carousel-item {
  flex: 0 0 auto;
  width: 300px;
  margin: 10px;
  scroll-snap-align: start;
  background-color: #FFCE00;
  border-radius: 10px;
  box-shadow: -4px -4px 8px #FFCE00;
  transition: box-shadow 0.3s;
  padding: 20px;
  text-align: center;
}
.carousel-item:hover {
  box-shadow: 4px 4px 8px #00FFFF;
}
.carousel-item img {
  max-width: 100%;
  border-radius: 10px;
}
.carousel-item h3 {
  margin: 10px 0;
  font-size: 1.5em;
}
.carousel-item p {
  font-size: 1em;
  color: #666;
}
.carousel-item .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  border-width: 2px;
  border-style: dashed;
  transition: background-color 0.3s, color 0.3s;
}
.carousel-item .btn:hover {
  background-color: #00FFFF;
  color: #000000;
  border-style: solid;
}/*# sourceMappingURL=carousel.css.map */