CSS
/* hides the element */ yourSelector { display: none; }
JavaScript
/* hides the element */ yourVariable.style.display = `none` /* shows the element */ yourVariable.style.display = `block`