.timer {
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
  }
  
  .days,
  .hours,
  .minutes,
  .seconds {
    padding: 0 0.1em;
    color: var(--first-color);
    font-weight: bold;
  }
  
  .days h2,
  .hours h2,
  .minutes h2,
  .seconds h2 {
    padding: 0 0.2em;
    font-size: 2.3em;
    font-weight: 300;
  }
  
  .days h4,
  .hours h4,
  .minutes h4,
  .seconds h4 {
    font-size: 1.4em;
    font-weight: 300;
    margin-top: 0;
    color: #fff;
  }
  
  .seconds {
    border: 0;
  }

  .btn{
    color: #fff;
    margin: 30px auto;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    border-radius: 15px;
    padding: 10px;
    backdrop-filter: blur(10px);
    /* font-size: larger; */
    position: relative;
    left: 82px;
  }
  @media screen and (max-width: 1000px) {
    .days h4,
    .hours h4,
    .minutes h4,
    .seconds h4 {
      font-size: 1em;
      font-weight: 300;
      margin-top: 10px;
    }
    .days h2,
    .hours h2,
    .minutes h2,
    .seconds h2 {
      padding: 0 0.2em;
      font-size: 1.8em;
      font-weight: 300;
    }
  }



  
