/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
* {
  box-sizing: border-box;
}

html,
body {
  width:100%;
  height:100%;
  margin:0;
  overflow:hidden;
}

body {
  background:#87CEEB;
}

#world{
  
  width:100%;
  height:100%;
  position:relative;
  
  /*border: 5px solid red;*/
  
  background:
    linear-gradient(
      #87CEEB 0%,
      #87CEEB 70%,
      #3dbb55 70%,
      #3dbb55 100%
    
    );
}

.walker{
  width:128px;
  height:128px;
  
  position:absolute;
  
  bottom: 80px;
  
  background-repeat:no-repeat;
  background-position: 0 0;
  
  transform: scale(3);
  transform-origin: bottom center;
}