:root {
  --environment_theme-accent: red;
  --environment_theme-label: 'Production';
}

.pf-v5-c-masthead {
  --pf-v5-c-masthead--BackgroundColor: var(--environment_theme-accent);
  --pf-v5-c-toolbar--BackgroundColor: var(--environment_theme-accent);
}

:where(.pf-v5-theme-dark) .pf-v5-c-masthead .pf-v5-c-toolbar {
  --pf-v5-c-toolbar--BackgroundColor: var(--environment_theme-accent);
}

.pf-v5-c-masthead::after {
  content: var(--environment_theme-label);
  color: black;
  font-weight: 1000;
  font-size: 2em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body {
  border: 5px solid var(--environment_theme-accent);
  position: relative;
}

/* BEGIN_COP */
body::after {
  content: 'To de olho ein !!';
  text-shadow:
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000;
  color: #fff;
  font-weight: 1000;
  font-size: 2em;
  background-image: url('../img/cop.png');
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  z-index: 1000;
}

/* END_COP */