html{
  background:linear-gradient(#4c1f5e,purple);
  display:flex;
  align-items: center;
  justify-content: center;
  height:100%;
  overflow:hidden;
}

#ghost{
  position:relative;
}

#ghost-body{
  background:white;
  width:200px;
  height:250px;
  -webkit-border-radius: 8px;
  -webkit-top-right-border-radius:50%;
  -webkit-top-left-border-radius:50%;
  border-top-right-radius:50%;
  border-top-left-radius:50%;
}

#right-eye{
  position:absolute;
  animation:blink 15s 1.5s infinite;
  background:black;
  width:30px;
  height:30px;
  top:100px;
  left:120px;
  border-radius:100px;
}


#left-eye{
  position:absolute;
  background:black;
  animation:blink 15s 1.5s infinite;
  width:30px;
  height:30px;
  top:100px;
  left:50px;
  border-radius:100px;
}



#right-leg::before{
  content:'';
  position:absolute;
  background-color:#332b0d;
  top:60px;
  width:25px;
  height:7px;
  /*border-bottom-right-radius:35px;
  border-bottom-left-radius:35px;*/
}

#right-leg{
  position:absolute;
  background-image: repeating-linear-gradient(180deg, orange 50px, red 60px, orange 20px, red 70px);
  width:25px;
  height:100px;
  left:50px;
  top:190px;
  z-index:-1;
}

#left-leg::before{
  content:'';
  position:absolute;
  background-color:#332b0d;
  top:60px;
  width:25px;
  height:7px;
  /*border-bottom-right-radius:25px;
  border-bottom-left-radius:25px;*/
}

#left-leg{
  position:absolute;
  background-image: repeating-linear-gradient(180deg, orange 50px, red 60px, orange 20px, red 70px);
  width:25px;
  height:100px;
  left:120px;
  top:190px;
  z-index:-1;
}

#right-shoe{
  position:absolute;
  top:280px;
  left:113px;
  border-top-right-radius:10px;
  border-top-left-radius:10px;
  background:black;
  width:40px;
  height:20px;
}

#left-shoe{
  position:absolute;
  top:280px;
  left:42px;
  border-top-right-radius:10px;
  border-top-left-radius:10px;
  background:black;
  width:40px;
  height:20px;
}

#pumpkin:before{
  content:'';
  position:absolute;
  top:-25px;
  left:20px;
  background:transparent;
  border-top:5px solid black;
  border-radius:30px;
  width:60px;
  height:70px;
}

#pumpkin::after{
  content:'';
  background:radial-gradient(darkorange,#d88000);
  box-shadow: 0 0 10px #8f5604;
  width:40px;
  height:70px;
  top:0px;
  left:30px;
  border-radius:50%;
  position:absolute;
}

#pumpkin{
  position:absolute;
  top:230px;
  left:210px;
  background:radial-gradient(darkorange,#d88000);
  height:70px;
  width:100px;
  border-radius:30px;
}


#mouth{
  position:absolute;
  animation:sleepy-mouth 15s 1.5s infinite;
  top:150px;
  left:90px;
  background:black;
  height:10px;
  width:20px;
  border-radius:150%;
}

#shadow{
  position:absolute;
  width:700px;
  height:50px;
  top:290px;
  left:-250px;
  background:linear-gradient(black,transparent);
  opacity:0.7;
  z-index:-1;
}

#fence::before, #fence1::before, #fence2::before{
  content:'';
  position:absolute;
  top:-20px;
  width: 0; 
  height: 0; 
  border-left: 20px solid transparent;
  border-right: 20px solid transparent; 
  border-bottom: 20px solid white;
}


#fence{
  width:40px;
  height:150px;
  position:absolute;
  background:radial-gradient(white, lightgrey);
  left:-200px;
  top:140px;
}


#fence1{
  width:40px;
  height:150px;
  position:absolute;
  background:radial-gradient(white, lightgrey);
  left:-80px;
  top:140px;
}

#fence2{
  width:40px;
  height:150px;
  position:absolute;
  background:radial-gradient(white, lightgrey);
  left:280px;
  top:140px;
  z-index:-1;
}

#fencebar{
  position:absolute;
  height:30px;
  width:600px;
  left:-220px;
  top:185px;
  background:radial-gradient(white, lightgrey);
  z-index:-2;
}

/*@keyframes blink-left {
  0%{ 
    height:30px;
  }5% {
    height:0px;
    transform:translateY(12px);
  }8% {
    height:20px;
    transform:translateY(0px);
  }12% {
    height:0px;
    transform:translateY(12px);
  }16% {
    height:20px;
    transform:translateY(0px);
  }25%{
    height:10px;
    transform:translateY(12px);
  }50%{
    height:10px;
    transform:translateY(12px);
  }60%{
    height:25px;    
  }100%{
    height:25px;    
  }
}*/

@keyframes blink {
  0%{ 
    height:30px;
  }5% {
    height:0px;
    transform:translateY(12px);
  }8% {
    height:20px;
    transform:translateY(0px);
  }13% {
    height:0px;
    transform:translateY(12px);
  }17% {
    height:20px;
    transform:translateY(0px);
  }26%{
    height:10px;
    transform:translateY(12px);
  }50%{
    height:10px;
    transform:translateY(12px);
  }60%{
    height:25px;    
  }100%{
    height:25px;    
  }
}

@keyframes sleepy-mouth {
  0%{ 
    height:10px;
  }7% {
    height:10px;
  }17% {
    height:10px;
  }25%{
    height:30px;
  }60%{
    height:5px;
  }80%{
    height:10px;  
  }
}


#rob-icon{
  position:absolute;
  width:50px;
  height:50px;
  background:radial-gradient(#109be9,#155dca);
  bottom:0;
  right:0;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:white;
  font-size:30px;
  text-decoration:none;
  margin:5px;
  font-family:cursive;
  box-shadow:2px 2px 2px grey;
}

#gabby-icon:hover{
  background:#0c83bb;
  transition:background 1s;

}