* {
  box-sizing: border-box;
}

body {
  background-color: #1d1e28;
  background-image: url("/images/");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;

  height: 100vh;
  color: #fff;
  font-family: "Red Hat Text", sans-serif;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;

  overflow: hidden;
}
.stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.patern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.countdown-wrapper {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

.title {
  font-size: 23px;
  margin: 0 auto;
  font-weight: 700;
  letter-spacing: 7.5px;
}

.list {
  list-style: none;
  display: flex;
  gap: 20px;
}
.list-timer {
  margin-top: 45px;
  width: 100%;
  padding: 0 10px;
}

.li-timer {
  background: #000;
  border-radius: 8px;
  border-bottom: 0.4rem solid #000;
  font-size: 2.25rem;
  width: 70px;
  height: 70px;
  position: relative;
}

.up {
  display: block;
  background: #343650;
  color: #fb5e84;
  opacity: 0.85;
  width: 100%;
  height: 31px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding-top: 8px;
  overflow: hidden;
}
.down {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 8px;
  background: #343650;
  color: #fb5e84;
  width: 100%;
  height: 32px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  position: relative;
  top: 0.3px;
  overflow: hidden;
  position: relative;
}
.circle {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000;
  clip-path: circle(50% at 100% 49%);
  position: absolute;
  top: calc(50% - 4px);
  right: 0;
}

.li-text {
  font-size: 10px;
  letter-spacing: 0.185rem;
  color: #8385a9;
  position: relative;
  top: -1rem;
}
.circle:nth-child(4) {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000;
  clip-path: circle(50% at 0% 49%);
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
}

@media (max-width: 500px) {
  .title {
    font-size: 20px;
  }


  .countdown {
    align-items: center;
  }


}
