.title {
  text-align: center;
  padding: 1em;
}

.description {
  text-align: center;
  margin: auto;
  margin-top: 5em;
  max-width: 30em;
  white-space: pre-wrap;
  line-height: 2;
}
.description a {
  color: var(--link);
}

.carousel {
  margin: 2em auto;
  position: relative;
  width: 80vw;
}
.carousel .imgs {
  display: flex;
  overflow: hidden;
  width: inherit;
  gap: 1em;
}
.carousel .imgs .img {
  width: inherit;
  max-height: 50vh;
  display: grid;
  place-items: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  flex-shrink: 0;
}
.carousel .imgs .img:first-child {
  transition: margin-left 0.5s;
  margin-left: calc((-100% - 1em) * var(--i));
}
.carousel .imgs .img img {
  height: inherit;
  width: inherit;
  max-height: inherit;
  max-width: inherit;
  object-fit: contain;
}
.carousel button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 4em;
  width: 2em;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
.carousel button::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.5em;
  height: 1.5em;
  border: solid #F24333 0.5em;
  border-style: solid solid none none;
}
.carousel button.left {
  left: 0;
}
.carousel button.left::before {
  transform: translateX(25%) rotate(-135deg);
}
.carousel button.right {
  right: 0;
}
.carousel button.right::before {
  transform: translateX(-25%) rotate(45deg);
}
.carousel .bubbles {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
.carousel .bubbles .bubble {
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background-color: #F24333;
  opacity: 0.5;
  transition: opacity 0.5s;
  cursor: pointer;
}
.carousel .bubbles .bubble[selected] {
  opacity: 1;
}

/*# sourceMappingURL=home.css.map */
