@media screen and (max-width:600px) {
    #Desktop {
        display: none;
    }

    #Mobile {
        display: block;
    }
}

@media screen and (min-width:601px) {
    #Desktop {
        display: block;
    }

    #Mobile {
        display: none;
    }
}