@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
    background: url("../images/background.jpg") #1a4209;
    background-attachment: fixed;
    background-position: top right;
    background-size: fit;
    font-family: 'Poppins', sans-serif;
}

.bg-black {
    background: #000;
}

#days, #hours, #minutes, #seconds {
    font-size: 30px;
}

.meter {
  box-sizing: content-box;
  height: 20px;
  position: relative;
  border-radius: 5px;
}

.meter > span {
  display: block;
  height: 100%;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.meter > span:after,
.animate > span > span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  
  z-index: 1;
  background-size: 50px 50px;
  animation: move 2s linear infinite;
  border-radius: 5px;
  overflow: hidden;
}

.animate > span:after {
  display: none;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

@media screen (max-width: 450px) {
    #days, #hours, #minutes, #seconds {
        font-size: 1rem;
    }
}