@import url("https://fonts.googleapis.com/css?family=Muli");

/* * {
  box-sizing: border-box;
} */

body {
  background-image: linear-gradient(
    to right,
    rgb(255, 199, 199),
    rgb(215, 163, 163)
  );
  font-family: "Muli", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  /* overflow: hidden; */
  margin: 0;
  color: white !important;
}

.btn:active {
  transform: scale(0.9);
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

.circle {
  margin-top: 40px;
  height: 15px;
  width: 15px;
  background-color: #d8e8ba;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.3;
  margin-inline: 10px;
  margin-bottom: 5px;
  transition: 1s;
}

.circle.active {
  opacity: 1;

  background-color: #ffffff;
}

.circle.finish {
  background-color: #0d6efd;
}

#prev {
  margin-right: 20px;
  color: white;
}

#next {
  margin-left: 20px;
  color: white;
}

#minor {
  display: none;
}
