﻿body:after {
    visibility: hidden;
    content: 'desktop';
}

@media screen and (max-width: 800px) {
    body:after {
        content: 'tablet';
    }
}

@media screen and (max-width: 540px) {
    body:after {
        content: 'mobile';
    }
}