:root {
  /* --background: #2e2d2d; */
  --background: #032258;
  --gray-800: #424242;
  --green-500: #62aba1;
}

* {
  border: 0;
  box-sizing: content-box;
  font-family: "Antonio", sans-serif;
  margin: 0;
  padding: 0;
}

.holding-div {
  align-items: center;
  background-color: var(--background);
  display: flex;
  flex-direction: column;
  /* height: 10vh; */
  justify-content: center;
  width: 100%;
}

#count-down {
  display: flex;
  gap: 24px;
  list-style: none;
  z-index: 1000;
  margin-left: 10%;
  /* margin-top: 30%; */
  /* margin-bottom: 5%; */
}

#count-down li {
  background-color: var(--gray-800);
  border-radius: 15px;
  /* color: var(--green-500); */
  color: white;
  font-size: 32px;
  font-weight: bold;
  height: 45px;
  padding: 8px 12px;
  position: relative;
  text-align: center;
  width: 35px;
}

#count-down li:before,
#count-down li:after {
  position: absolute;
}

#count-down li:not(:last-child):before {
  content: ":";
  font-size: 24px;
  right: -15px;
  top: 15px;
}

#count-down li:after {
  bottom: -16px;
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 100;
  justify-content: center;
  width: calc(100% - 22px);
}

#count-down li.days:after {
  content: "days";
}

#count-down li.hours:after {
  content: "hours";
}

#count-down li.minutes:after {
  content: "minutes";
}

#count-down li.seconds:after {
  content: "seconds";
}
