title-card {
  display: flex;
  width: 100%;
  height: 80vh;
  align-items: center;
  justify-content: center;
  position: relative;
}
title-card #forward, title-card #back {
  position: absolute;
  height: 100%;
  width: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  z-index: 1;
  color: white;
  top: 0;
}
title-card #forward {
  right: 0;
}
title-card #back {
  left: 0;
}
title-card #forward:hover, title-card #back:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
title-card bubbles {
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 10px;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 5px 0 5px 0;
}
title-card bubbles bubble {
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 5px 0 5px;
}
title-card bubbles bubble.chosen {
  background-color: rgba(0, 0, 0, 0.7);
}
title-card content-rack {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  flex-direction: row;
  scroll-behavior: smooth;
}
title-card content-rack::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 500px) {
  title-card {
    height: 30vh;
  }
}
@media screen and (min-width: 500px) and (max-width: 1030px) {
  title-card {
    height: 100vh;
  }
}/*# sourceMappingURL=title_card.css.map */