@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Prompt:wght@300;400;700&display=swap");

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

:root {
  --yellow: orange;
  --purple: #b19cd9;
}
body {
  font-family: "Prompt", sans-serif;
  background: rgb(255, 165, 0, 0.6);
}

#counterSection {
  margin: 30px auto;
  max-width: 400px;
  padding: 10px;
  color: white;
}

@media (max-width: 768px) {
  #counterSection {
    width: 100vw;
  }
}

.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.counter1 {
  border-radius: 10px 10px 0 0;
  background: rgb(11, 33, 120);
}
.counter2 {
  border-radius: 0%;
  background: rgb(27, 52, 152);
}
.counter3 {
  border-radius: 0%;
  background: rgb(40, 66, 171);
}
.counter4 {
  border-radius: 0 0 10px 10px;
  background: rgb(53, 80, 188);
}

.counter-container h1 {
  font-size: 40px;
  font-weight: 700;
  /* padding: 5px; */
  color: var(--yellow);
}

.counter-container div {
  /* height: 40px; */
}

.counter-container div p {
  font-size: 24px;
  letter-spacing: 1px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 700;
}

.counter-container span {
  font-size: 12px;
  letter-spacing: 1px;
  padding-top: 5px;
}

#time1,
#time2,
#time3,
#time4 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.yellowFont {
  color: var(--yellow);
}
.counter-container div .littleFont {
  font-size: 18px;
  margin-top: 5px;
}
