body, html {
  height: 100%;
  margin: 0;
}
.bottomleft p {
  font-size: 16px;
}
.bgimg {
  background-image: url('forestbridge.jpg');
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  color: white;
  font-family: "Courier New", Courier, monospace;
  font-size: 25px;
}
.topleft {
    position: absolute;
    top: 0;
    left: 16px;
    padding-top: 20px;
}
.bottomleft {
  position: absolute;
  bottom: 0;
  left: 16px;
}
.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
hr {
  margin: auto;
  width: 40%;
}
.countdown {
  display: flex;
  margin-top: 10px;
}
.countdown div {
    position: relative;
    width: 80px;
    height: 80px;
    line-height: 100px;
    text-align: center;
    background: transparent;
    color: #fff;
    margin: 0 15px;
    font-size: 2em;
    font-weight: 500;
}
.countdown div:before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 35px;
  background: #ed050b;
  color: #fff;
  font-size: 0.35em;
  line-height: 35px;
  font-weight: 300;
}
.countdown div#day:before {
  content: "Days";
}
.countdown div#hour:before {
  content: "Hours";
}
.countdown div#minute:before {
  content: "Minutes";
}
.countdown div#second:before {
  content: "Seconds";
}

@media screen and (max-width: 767px) {
  .countdown {
      display: inline-block;
      margin-top: 0px;
  }
  .countdown div {
    margin: 0 15px 15px 15px;
  }
  .bottomleft p {
      font-size: 12px;
      text-align: center;
  }
  .bottomleft {
      position: absolute;
      bottom: 0;
      left: 16px;
      text-align: center;
      width: 100%;
  }
}