* {
    margin:0px;
    padding:0px;
    box-sizing: border-box;
}

#desktop-coming-soon {
    background-image: url(./hero.png);
    height:100vh;
    background-position: center;
}

#mobile-coming-soon {
    background-image: url(./hero.png);
    height:100vh;
    background-position: center;
}

@media screen and (max-width:600px) {
    #desktop {
        display:none;
    }
}

@media screen and (min-width:601px){
    #mobile {
        display: none;
    }
}