body {
  background: linear-gradient(pink,hotpink,lightblue);
  font-family: Arial;
  text-align: center;
  overflow: hidden;
}

h1,h3,p,h2 {
    color: #fff;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #ff4fd8,
    0 0 20px #ff4fd8,
    0 0 40px #ff0080,
    0 0 80px #ff0080;
}

#gameArea {
  width: 750px;
  height: 400px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid white;
  background-image: url("images/sprinkle.jpg");
  background-size: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
#player {
  width: 80px;
  position: absolute;
  bottom: 0;
  left: 50px;
}
#obstacle {
  width: 70px;
  position: absolute;
  bottom: 0;
  left: 700px;
  animation: moveObstacle 3s linear infinite;
}
@keyframes moveObstacle {

  from {
    left: 800px;
  }
  to {
    left: -100px;
  }
}
button {
  padding: 10px 20px;
  font-size: 18px;
  margin: 10px;
}

#obstacle1 {
  width: 70px;
  position: absolute;
  bottom: 0;
  animation: moveObstacle 3s linear infinite;
  left: 650px; animation-delay: 0s; 
}








