@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;900&display=swap');

.world {
  overflow: hidden;
  position: relative;
  max-width: 100% !important;
  max-height: 10vw !important;
  display: none;
}

.score {
  font-family: 'Anton', sans-serif;
  position: absolute;
  font-size: 12px;
  font-weight: 400;
  right: 1vmin;
  top: 50%;
}

.score:before {
    content: "+ ";
}

.start-screen {
  position: absolute;
  font-size: 12px;
  font-weight: 400;
  top: 50%;
  left: 73px;
  transform: translate(-50%, -50%);
}

.hide {
  display: none;
}

.ground {
  --left: 0;
  position: absolute;
  width: 300%;
  bottom: 0;
  left: calc(var(--left) * 1%)
}

.dino {
  --bottom: 0;
  position: absolute;
  left: 4%;
  height: 30%;
  bottom: calc(var(--bottom) * 1%);
}

.wave {
  position: absolute;
  width: 80px;
  bottom: 0px;
  left: -3px;
}

.cactus {
  position: absolute;
  left: calc(var(--left) * 1%);
  height: 30%;
  bottom: 0;
}


@media only screen and (min-width: 1200px) {
  .world {
    display: block;
  }
}