@keyframes anim{
  100%{transform: rotate(360deg)}
}

*{
  cursor: default;
  user-drag: none; 
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.cookie{
  transform: rotate(0deg);
  margin: 2.5vw;
  width: 10vw;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -o-transition: 0.1s;
  animation: anim 25s infinite linear;
}

.counter{
  font: 5vw monospace;
}

#shop{
  position: absolute;
  right: 0;
  top: 0;
  background: blue;
  width: 20vw;
  height: 100%;
}

#innerShop{
  z-index: -1;
  max-height: 80vh;
  overflow-y: scroll;
  padding: 0;
  border-radius: 1vw;
  box-shadow: 0 0 100px #000000;
  background: black;
}

#Title{
  color: white;
  font: 7vw monospace;
  margin: 1.5vw;
}

.upgrade{
  text-transform: capitalize;
  background: white;
  margin: 0.1vw;
  padding: 0.5vw;
  font-family: monospace;
  cursor: pointer;
}

.title{
  font-size: 1cm;
  margin: 0;
  cursor: pointer;
}

.cost{
  font-size: 0.5cm;
}