Hello,
This is Definitely Possible. You can simply use the Bootstrap's dismissible alerts: https://getbootstrap.com/docs/4.5/components/alerts/ to achieve this. Simply add the following code just after the #wrapper DIV starts:
<div class="alert alert-warning alert-dismissible fade show rounded-0 mb-0 text-center border-bottom" role="alert">
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.