
.main-container {
  display: flex;
  width: auto;
  height: 95vh;
  background-color: rgb(50, 50, 50);;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.dot {
  background: rgb(189, 58, 35);
  border-radius: 50%;
  width: min(20vh, 20vw);
  height: min(20vh, 20vw);
  transform: scale(1);
  transition: all 1s;
}

.btn-secondary {
  position: absolute;
  align-self: flex-start;
  font-size: 2em;
  width: 30%;
  height: 10%;
  margin: 30px;
}

h5 {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

h3 {
  position: absolute;
  width: auto;
  height: auto;
  font-size: 8vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text-white > * {
  margin: 10px;
  max-width: 20rem;
  flex-wrap: nowrap;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

h4 {
  color: aliceblue;
  position: absolute;
  bottom: 10%
}

@media screen and (max-width: 2068px) {
  .text-white {
    flex-direction: column;
    align-items: center;
  }
}

  @media only screen and (max-height: 900px) {
  .btn-secondary {
    position: absolute;
    left: 0;
    font-size: 1em;
    min-width: 60px;
    max-width: 60px;
    min-height: 35px;
    max-height: 40px;
  }
}