/* CSS files add styling rules to your content */

body {
  margin: 0em;
}

.cover {
  height: 400px;
  background-image: url(https://cdn.glitch.com/df238f73-704e-4d8c-8bae-d4e8b44a6a7f%2Fmika-baumeister-PZao9UjlbMY-unsplash2.jpg?v=1614721870823);
  color: white;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0, 5);
  bakcground-blend-mode: darken;
}

.cover-small {
  height: 200px;
  background-blend-mode: normal;
}

.card {
  border: 0 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.6);
}

.card-title {
  min-height: 2.5rem;
}
.card-text {
  min-height: 8rem;
}

.product-stripe,
.slider {
  overflow-x: scroll;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.stripe-container,
.slider-container {
  display: flex;
}
.stripe-container .card {
  width: 300px;
  flex-shrink: 0;
  margin-right: 1rem;
}
.responsive-iframe {
  position: relative;
  padding-top: 56.25%;
}
.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider {
  overflow-x: hidden;
}
.slider-container {
  transform: translateX(0);
  animation: slider 8s infinite;
}

.image-container {
  width: 100%;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

@keyframes slider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.avatar {
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
  display:inline-block;
  margin:0 auto;
}
