* {
  margin: 0;
  padding: 0;
}
.timer_body {
  width: 100%;
  height: 90vh;
  background: url("./images/background_for_timer.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 70%;
  justify-content: center;
  align-items: center;
}
.T_heading {
  color: #fffafa;
  font-size: 45px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 6px;
  word-spacing: 6px;
  margin-bottom: 25px;
}
.T_description {
  color: #bababa;
  text-align: center;
  font-size: 15px;
  letter-spacing: 1px;
}
.timer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.sub_timer {
  width: 220px;
  background-color: rgba(255, 255, 255, 0.19);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
}
.digit {
  color: #fff;
  font-weight: lighter;
  font-size: 70px;
  text-align: center;
  padding: 2.5rem 0;
}
.digit_name {
  color: black;
  background: #fff;
  text-align: center;
  padding: 0.6rem 0;
  font-size: 20px;
}
@media screen and (max-width: 700px) {
  .T_heading {
    font-size: 17px;
    font-weight: 500;
  }
  .T_description {
    font-size: 12px;
  }
  .sub_timer {
    width: 200px;
    height: 155px;
  }
  .digit {
    font-size: 30px;
    font-weight: 500;
  }
  .digit_name {
    font-size: 15px;
    padding: 10px 0;
  }
}
