* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

body {
  overflow: hidden;
  background-color: #f7f6f2;
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
}


#display_container {
  position: absolute;
  top: 25%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


#player_values_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

/* PLAYER BUTTONS */

#play_btn_div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#play_btn,
#pause_btn,
#replay_btn {
  width: 100px;
  padding: 10px 20px;
  z-index: 1;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.50;
  letter-spacing: normal;
  color: #000000;
  background-color: #f7f6f2;
  border: 1px solid #000000;
  text-transform: uppercase;
}

#play_btn:hover,
#pause_btn:hover,
#replay_btn:hover {
  color: #f7f6f2;
  background-color: #000000;
}


#pause_btn,
#replay_btn {
  display: none;
}

/* PLAYER PROGRESS BAR */

/* #progress_bar_container {
  width: 200px;
  position: relative;
}

#progress {
  width: 100%;
  background-color:#c2c2c2;
  border-radius: 5px;
}

#progress_bar {
  width: 0%;
  height: 10px;
  background-color: #000000;
  border-radius: 5px;
}

#progress_btn {
  position: absolute;
  top: -7px;
  left: -3px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: red;
  cursor: pointer;
} */


/*  PLAYER VALUES */

#year_div {
  margin-top: 6px;
  margin-bottom: 10px;
}

#month_span {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.0;
  letter-spacing: normal;
  text-transform: uppercase;
}

#year_span {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.50;
  letter-spacing: normal;
}

#year_unit {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.0;
  letter-spacing: normal;
}

#value_div {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 38px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.80;
  letter-spacing: normal;
}

#value_unit {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.0;
  letter-spacing: normal;
}
