.countdown-container {
  height: auto;
  margin-bottom: 50px;
  background-color: #ffe68270;
  padding-bottom: 50px;
  border-top: 2px solid #3999a3;
}

.countdown {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 600px;
}
@media (max-width: 600px) {
  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }
}

.countdown-unit {
  width: 6rem;
  height: 6rem;
  border-radius: 20px;
  overflow: hidden;
  grid-template-rows: 2fr 1fr;
}
.countdown-value,
.countdown-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.countdown-value {
  background-color: var(--color-primary);
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-white);
}

.countdown-label {
  background-color: #ffe165;
  font-size: 1rem;
  color: var(--color-primary);
}
