*,
*::before,
*::after {
  box-sizing: border-box;
  user-select: none;
}

body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "VT323", monospace;
  text-shadow: 2px 2px 2px white;
  image-rendering: pixelated;
  overflow: hidden;
  background-color: #8e464b;
}

.world {
  /* overflow-x: hidden;
  overflow-y: hidden; */
  position: relative;
}

.score {
  position: absolute;
  font-size: 5vmin;
  right: 1vmin;
  top: 1vmin;
}

.start-screen {
  position: absolute;
  font-size: 5vmin;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hide {
  display: none;
}

.sky {
  z-index: -1;
  position: absolute;
  width: 100%;

  bottom: 0;
}

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

.gil {
  --bottom: 0;
  position: absolute;
  left: 5%;
  height: 20%;
  bottom: calc(var(--bottom) * 1%);
}

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