*{
    box-sizing: border-box;
  }

  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, font, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td, menu, input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-family: inherit;
    vertical-align: baseline;
  }

  html, body{
    margin: 0;
    font-family: 'Arial', sans-serif;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    min-width: 320px;
    scroll-behavior: smooth;
  }
  body {
    background-color: rgba(250,93,0,.09);

  }
  .main {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
  }

  .container {
    max-width: 1224px;
    margin: auto;
    padding: 0 15px;
    width: 100%;
  }

  .nav {
    width: 100%;
    height: 120px;
    display: flex;
    color: #1d1e1c;

  }
  .nav-left {
    min-width: 40%;
    display: flex;
    justify-content: center;

    align-items: center;

  }
  .nav-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-right ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    text-decoration: none;
  }

  .nav-right ul li a {
    text-decoration: none;
    color:#1d1e1c;
    padding: 30px;
    transition: all .3s ease-in;
  }

  .nav-right ul li a:hover {
    color: #fa5d00;
  }



  .ball-range {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    color: #5E5C3B;
    align-items: center;
    justify-content: center;
  }

  .ball-range-circle {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    color: rgba(29,30,28,.6);
    align-items: center;
    justify-content: center;
  }

  .ball-range__arena {
    width: 30vh;
    height: 30vh;
    border: 1px solid rgba(29,30,28,.4); 
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ball-range__arena-circle {
    width: 30vh;
    height: 30vh;
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .circle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #progressBar {
    margin-top: 70px;
    padding: 20px;
  }


#arena_floating_ball_text {
  z-index: 1;
}


  #floating-ball {
    width: 100px;
    height: 100px;
    background-color:  #fa5d00;
    border-radius: 50%;
    position:absolute;
    bottom: 0%;
    left: 0%;
    transition: all 5s ease-in-out;
    transform: translateX(-50%) translateY(+50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #floating-ball-circle {
    width: 100px;
    height: 100px;
    background-color:  #fa5d00;
    border-radius: 50%;
    transition: all 5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

 


  /* .ball-range__arena:hover  #floating-ball-circle {
    transform: scale(2);
  }  */

  .ball-range__text {
    padding-top: 50px;
  }

  progress {
    accent-color: #fa5d00;
  }

  



  #ball-range-button {
    height: 50px;
    width: 90px;
    background-color: #fa5d00;
    color: rgba(29,30,28,.6);;
    box-shadow: none;
    border-radius: 8px;
    border: none;

  }

  #ball-range-button:hover {
    color:rgba(29,30,28,.6);
    opacity: 0.75;

  }

  #ball-range-button-circle {
    height: 50px;
    width: 90px;
    background-color: #fa5d00;
    color: rgba(29,30,28,.6);;
    box-shadow: none;
    border-radius: 8px;
    border: none;

  }

  #ball-range-button-circle:hover {
    color: rgba(29,30,28,.6);
    opacity: 0.75;

  }

  .footer {
    margin-top: auto;
    height: 100px;
    color:rgba(29,30,28,.6);
    display: flex;
    align-items: center;
    align-content: center;
  }

  .footer-txt {
    width: 100%;
    text-align: center;
  }

