body {
  background-image: url(./assets/sprites/background-day.png);
  /* background: contain; */
  background-repeat: no-repeat;
  background-size: 100% 100vh;
  overflow: hidden;
  /* background-color: aqua; */
}
.score {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2rem;
  width: max-content;
  position: fixed;
  right: 0px;
  z-index: 1000;
  margin: 1em;
  padding: 0.5em;
  background-color: rgba(255, 255, 255, 0.283);
  backdrop-filter: blur(5px);
  border-radius: 10px;
}
#atEnd,
#atStart {
  width: fit-content;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(240, 237, 237, 0.356);
  backdrop-filter: blur(5px);
}
#flappy {
  position: absolute;
  background-image: url(./assets/sprites/bluebird-midflap.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 300px;
  left: 100px;
  width: 60px;
}
.billBoard {
  font-size: 3em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  width: 350px;
  padding: 10px;
  border: 7px solid black;
  border-radius: 20px;
}
.pipe {
  position: absolute;
  left: 20px;
  width: 100px;
  height: 100px;
  background-image: url("./assets/sprites/pipe-green.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.levels {
  width: 700px;
  font-size: 200px;
  position: absolute;
  top: 20vh;
}
.top {
  transform: scaleY(-1);
}
.device-type-error {
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: rgb(159, 28, 4);
}
