* {
  padding: 0px;
  margin: 0px;
}
body {
  background-image: url(beach.jpg);
}

#container {
  /* border: 1px solid black; */
  position: relative;
  overflow: hidden;
}
#ball {
  height: 20px;
  width: 20px;
  /* border:1px solid black; */
  position: fixed;
  border-radius: 50%;
  background-color: red;
  left: 50%;
  bottom: 0%;
}
#bar-1 {
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15%;
  background-color: violet;
  border-radius: 10px;
  position: fixed;
  font-weight: bold;
  top: 0%;
  left: 42.5%;
}
#bar-2 {
  height: 25px;
  width: 15%;
  background-color: blueviolet;
  align-items: center;
  border-radius: 10px;
  position: fixed;
  display: flex;
  justify-content: center;
  font-weight: bold;
  bottom: 0%;
  left: 42.5%;
}
#display {
  position: absolute;
  top: 20%;
  left: 40%;
  text-align: center;
  font-size: 80px;
}
