.landing {
    position: relative;
    background-image: url('https://i.postimg.cc/FsLFyfsz/bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    }
    
    .landing-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    text-align: center;
    padding-top: 25px;
    }
    
    .landing h1 {
    font-family: 'Abril Fatface', cursive;
    font-size: 45px;
    text-transform: uppercase;
    }
    
    .landing h3 {
    font-family: 'Abril Fatface', cursive;
    font-size: 35px;
    text-transform: uppercase;
    }
    
    .countdown {
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    }
    
    .countdown div {
    font-family: 'Abril Fatface', cursive;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    margin: 10px;
    opacity: 0.7;
    background: #000;
    }
    
    .countdown span {
    display: block;
    font-size: 25px;
    }
    
    .countdown div:first-child {
      background: #3c0d94;
    }
    
    @media(max-width: 650px) {
    .landing img {
      width: 70%;
    }
    
    .landing h1 {
    font-size: 40px;
    }
    
    .countdown {
    font-size: 30px;
    flex-direction: column;
    }
    
    .countdown div {
      display: none;
    }
    
    .countdown div:first-child {
      display: block;
      width: 80%
      padding: 10px;
    }
    }