html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: #5cd8fd;
  overflow: hidden;
  cursor: none;
}
body .bear {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 440px;
  height: 470px;
  margin-left: -220px;
  border-radius: 220px 220px 0 0;
  background: #fff;
}
body .bear .ears-container {
  position: absolute;
  width: 530px;
  height: 120px;
  left: 50%;
  top: 40px;
  margin-left: -265px;
}
body .bear .ears-container .ear {
  float: left;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
}
body .bear .ears-container .ear:last-child {
  float: right;
}
body .bear #limit {
  position: absolute;
  left: 50%;
  top: 10%;
  width: 240px;
  height: 270px;
  margin-left: -120px;
}
body .bear #limit #face {
  position: absolute;
  left: 50%;
  top: 6%;
  width: 140px;
  height: 230px;
  margin-left: -70px;
}
body .bear #limit #face .eyes-container {
  position: relative;
  left: 50%;
  width: 82px;
  height: 20px;
  margin-left: -41px;
}
body .bear #limit #face .eyes-container .eye {
  float: left;
  width: 20px;
  height: 100%;
  border-radius: 50%;
  background: #000;
}
body .bear #limit #face .eyes-container .eye:last-child {
  float: right;
}
body .bear #limit #face .phiz-container {
  margin-top: 10px;
  width: 100%;
  height: 200px;
  border-radius: 100px;
  background: #def9fe;
}
body .bear #limit #face .phiz-container #nose {
  position: relative;
  left: 50%;
  top: 6%;
  width: 88px;
  height: 88px;
  margin-left: -44px;
  border-radius: 50%;
  background: #000;
}
body .bear #limit #face .phiz-container #nose .dot {
  position: relative;
  left: 16%;
  top: 16%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
}
body .bear #limit #face .phiz-container .mouth {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: 24px;
  height: 8px;
  margin-left: -12px;
  border-radius: 8px;
  background: #000;
}
body #fish {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 74px;
  margin-left: -10px;
  margin-top: -37px;
}
body #fish .head {
  width: 100%;
  height: 60px;
  border-radius: 50%;
  background: #adadad;
}
body #fish .head .fish-eye {
  position: relative;
  left: 10px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}
body #fish .fins {
  position: absolute;
  left: -7px;
  top: 24px;
  width: 22px;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 16px solid #adadad;
}
body #fish .tail {
  position: relative;
  left: -6px;
  top: -2px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 16px solid #adadad;
}