
<style>
    body {
        background-color: tan;
    }
    
    /* On screens that are 992px or less, set the background color to blue */
    @media screen and (max-width: 600px) {
        borrar {
        display: none;
        }
    }
    
    /* On screens that are 600px or less, set the background color to olive */
    @media screen and (max-width: 600px) {
        body {
        background-color: olive;
        }
    }
</style>