body::before {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 15px;
  display: block;
  font-size: 10px;
  content: "full 1424px xl";
  background-color: green;
  color: black;
  z-index: 1000000;
  opacity: 0.95;
}
@media screen and (max-width: 1320px) {
  body::before {
    content: "desktop-nav 1320px lg";
    background-color: cyan;
  }
}
@media screen and (max-width: 1080px) {
  body::before {
    content: "tablet-landscape 900px md";
    background-color: violet;
  }
}
@media screen and (max-width: 900px) {
  body::before {
    content: "tablet 900px md";
    background-color: red;
  }
}
@media screen and (max-width: 599px) {
  body::before {
    content: "mobile 599px sm";
    background-color: orange;
  }
}
@media screen and (max-width: 399px) {
  body::before {
    content: "mobile-portrait 399px xs";
    background-color: yellow;
  }
}/*# sourceMappingURL=coding-hilfe-testseite.css.map */