html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #E6AF2E;
  overflow: hidden;
}

#cat {
  width: 300px;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
}

#cross {
  position: absolute;
}
#cross:before, #cross:after {
  content: "";
  display: block;
  width: 60px;
  height: 15px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#cross:after {
  transform: translate(-50%, -50%) rotate(136deg);
}