@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap);
.slider {
  width: 9rem;
  min-height: 5rem;
  position: relative;
}
.slider.slider-2 img {
  animation: slide-2 3s infinite;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  position: absolute;
  opacity: 0;
  object-fit: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.slider.slider-2 img:nth-child(1) {
  animation-delay: 0s;
  animation-timing-function: ease-in-out;
}
.slider.slider-2 img:nth-child(2) {
  animation-delay: 1.5s;
  animation-timing-function: ease-in-out;
}
@keyframes slide-2 {
  0% {
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  47% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
html,
body > #root > div {
  height: 100vh;
}
a {
  text-decoration: none;
}
::-webkit-scrollbar {
  width: 16px;
  background: transparent;
}
::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 4px solid transparent;
  background-clip: padding-box;
  background-color: rgba(134, 142, 150, 0.5);
}


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