/* Select an existing element (for example, the header or body tag) */
header:before {
  content: "Cryptshare Test Installation"; /* Banner Text */
  display: block;
  background-color: #f39c12; /* Banner Hintergrundfarbe */
  color: white; /* Textfarbe */
  font-size: 24px; /* Textgröße */
  text-align: center;
  padding: 10px;
  position: fixed; /* Sicherhstellen, dass das Banner oben steht */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* Sicherstellen, dass das Banner über allen anderen Elementen steht */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Schattenwurf */
  visibility: visible; /* visible/hidden Schalter ein/aus */
}