.navbar {
  overflow: hidden;
  background-color: #333;
}

.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

.navbar a.right {
  float: right;
}

.navbar a:hover {
  background-color: #ddd;
  color: black;
}

* {
  box-sizing: border-box;
}

.stage {
  display: flex;
  justify-content: space-between;
  padding-right: 5%;
  padding-left: 5%;
  padding-top: 5rem;
}

.stage button {
  background-color: white;
  outline: none;
  border: none;
}

.stage button:hover {
  background-color: white;
  outline: 3px solid gold;
}

.stage button:focus {
  background-color: white;
}

.clickbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  width: calc(20vw + 2rem);
  border-radius: 1rem;
}

.pillar {
  width: 30px;
  height: 350px;
  background: grey;
  border-radius: 10px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.stand {
  height: 10px;
  width: 15vw;
  background: grey;
  border-radius: 100vh;
}

.float {
  width: 30px;
  height: 60px;
  background: rgba(255, 255, 255, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.disc {
  height: 40px;
  overflow: visible;
  z-index: 1;
  position: relative;
  border-radius: 100vh;
}

.disc.d1 {
  background-color: rgb(232, 23, 23);
  width: 20vw;
  min-width: 150px;
}

.disc.d2 {
  background-color: blue;
  width: 17vw;
  min-width: 130px;
}

.disc.d3 {
  background-color: green;
  width: 14vw;
  min-width: 110px;
}

.disc.d4 {
  background-color: purple;
  width: 11vw;
  min-width: 90px;
}

.disc.d5 {
  background-color: rgb(233, 233, 30);
  width: 8vw;
  min-width: 70px;
}

.score {
  display: flex;
  max-width: fit-content;
  margin-inline: auto;
  justify-content: space-between;
  padding: 0 1em;
}

.reset {
  cursor: pointer;
  position: absolute;
  left: 50%;
  font-size: 21px;
  transform: translateX(-50%);
  outline: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  width: calc(5vw + 2rem);
  border-radius: 1rem;
}

.fa-icon-innter-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}
