*, .invisible, span {
  font-family: "Jura", sans-serif;
  font-size: large;
  font-weight: 700;
}

.invisible {
  color: red;
  position: relative;
  text-align: center;
  top: 50px;
  z-index: -10;
  opacity: 0;
}

body {
  background-color: #94d394;
  color: black;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh-15px);
  margin: 0;
  padding: 0 50px;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.nav *, .nav .invisible, .nav span {
  margin: 10px;
}

.nav .nav__num-label, .nav .nav__speed-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav .nav__gen-btn, .nav .nav__algo-slt {
  padding: 10px;
}

.nav .nav__ctrl-btn {
  margin: 0px 100px;
}

.nav span {
  margin: 15px 0px 0px 0px;
}

.ani__slider {
  padding: 20px 0px;
  width: 100%;
}

.ani__animation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.ani__animation .bar {
  background-color: greenyellow;
  border: 0.15rem solid #42a042;
  border-radius: 15px;
  justify-items: center;
}

.ani__animation .comparing {
  background-color: #ee76ac;
}

.ani__animation .sorted {
  background-color: #19dee1;
}

.ani__animation .pivot {
  background-color: orange;
}

.credits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: fixed;
  right: 50%;
  top: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background-color: white;
  -webkit-box-shadow: 0 0 8px 3px greenyellow;
          box-shadow: 0 0 8px 3px greenyellow;
  padding: 5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.credits li {
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.credits li img {
  width: 30px;
  height: 30px;
  margin: 2px;
}

.credits li:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

footer span {
  font-size: larger;
  position: fixed;
  right: 10%;
  top: 95%;
}

@media (max-width: 560px) {
  header, main, footer {
    opacity: 0;
    position: absolute;
    -webkit-transform: translateX(1000);
            transform: translateX(1000);
  }
  .invisible {
    opacity: 100;
  }
}
/*# sourceMappingURL=style.css.map */