@tailwind base;
@tailwind components;
@tailwind utilities;

#countdown-wrap {
  width: 100%;
  height: 100%;
  padding: 20px;
  /* margin: 150px auto 300px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#goal {
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  #goal {
    text-align: center;
  }
}

#glass {
  width: 100%;
  height: 20px;
  background: #c7c7c7;
  border-radius: 10px;
  float: left;
  overflow: hidden;
}

#progress {
  float: left;
  height: 20px;
  background: #ff5d50;
  z-index: 333;
  /* border-radius: 5px; */
}

.goal-stat {
  /* height: 30px; */
  padding: 10px;
  text-align: center;
  color: #000;
}

@media only screen and (max-width: 640px) {
  .goal-stat {
    width: 50%;
    text-align: center;
  }
}

.goal-number,
.goal-label {
  display: block;
}

.goal-number {
  font-weight: bold;
  font-size: 1.5rem;
}

.radial-bg {
  background: radial-gradient(
    circle at center,
    #faffbd 0%,
    #eaf4c500 75%,
    #f0f2e800 100%
  );
  background-repeat: no-repeat;
  
}
