CSS Humor

God Height 100% Width 100% Visibility Hidden First-Child Position Inherit

#god {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  z-index: -1;
  display: none;
  visibility: hidden;
}

#god:first-child {
  position: inherit;
}

From Emil Rising