:root {
  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color-scheme: light dark;
  color: #ffffffde;
  background-color: #242424;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%
}

a {
  font-weight: 500;
  color: #87878a;
  text-decoration: inherit
}

a:hover {
  color: #707070
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh
}

h1 {
  font-size: 3rem;
  line-height: 1.1
}

#app {
  max-width: 100vw;
  margin: 0 auto;
  padding: 1rem;
  text-align: center
}

img {
  max-width: 100%;
  height: auto
}

.card {
  padding: 2em
}

.read-the-docs {
  color: #888
}

@media (prefers-color-scheme: light) {
  :root {
      color: #242424;
      background-color: #efefef
  }

  a:hover {
      color: #707070
  }
}

/* SLIDER */
.slider .slider-item{
  display: none;
  animation: reveal .5s ease-in-out;
}
.slider .slider-item.active {
  display: block;
}
.slider .dots {
  text-align: center;
  padding: 10px;
}
.slider .dots li {
  cursor: pointer;
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 7px 11px;
  margin: 5px;
  line-height: .5;
  border-radius: 50%;
  text-indent: -9999px;
  opacity: .5;
  -webkit-transition: opacity .2s;
  -o-transition: opacity .2s;
  transition: opacity .2s;
}
.slider .dots li.active{
  opacity: 1;
}
@keyframes reveal{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}