* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #fff;
  background: #333;
  overflow: hidden;
}

.landing-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding-top: 50px;
}

.landing {
  position: relative;
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.landing h1 {
  font-size: 50px;
  opacity: 0.8;
}

.landing p {
  font-size: 20px;
}

.countdown {
  padding-top: 70px;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.countdown div {
  padding: 20px;
  opacity: 0.5;
  margin: 5px;
}

h3{
  margin: 15px 0px 15px 0px;
}
.countdown span {
  display: block;
  font-size: 25px;
}

@media screen and (max-width: 767px) {
  .landing img {
    width: 70%;
  }

  .landing h1 {
    font-size: 40px;
  }

  .countdown {
    font-size: 30px;
    flex-direction: column;
  }

  .mins, .seconds {
    display: none;
  }

  .countdown div:first-child {
    display: block;
    width: 80%;
    padding: 10px;
  }
}


@media screen and (max-height: 600px) {
  img {
    width: 20%;
  }

  p {
    display: none;
  }
}

@media screen and (max-height: 200px) {
   img {
    padding-bottom: 30px;
  }
  
  h1 {
    display: none;
  }
}