﻿body * { /*hides all elements inside the body*/
    display: none;
}

h1 { /* even if this h1 is inside head tags it will be first hidden, so we have to display it again after all body elements are hidden*/
    display: block !important;
}
