/* body styles whole page */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* those 4 things make everything in the center */
  height: 100vh;
  margin: 0;
  background-color: #1a1a1a;
  color: white;
  font-family: sans-serif;
  /* this feller makes sure thems there particles dont stretch the page u hear */
  overflow: hidden;
}

#costDisplay {
  position:absolute;
  top:400px;
  right: 180px;
}


/* tells you to find the element with that id */
#cookieButton {
  font-size: 80px;
  background-color:darkgrey;
  border: 3px solid snow;
  cursor: pointer;
  border-radius: 10%;
  
  /* add transition to the transforms */
  transition: transform 0.1s;

}

/* another thing for when the element hovers */
#cookieButton:hover {
  /* transform it*/
  transform: scale(1.2)
}

/* ditto, but for power button */
#powerButton {
  font-size: 80px;
  background-color:darkgrey;
  border: 3px solid snow;
  cursor: pointer;
  border-radius: 10%;
  position: absolute;
  top: 460px;
  right:80px;
  
  /* add transition to the transforms */
  transition: transform 0.1s;

}

/* another thing for when the element hovers */
#powerButton:hover {
  /* transform it*/
  transform: scale(1.2)
}

/* funciton js can run that makes the text bigger */ 
.pop {
  transform: scale(1.3);
  transition: transform 0.1s;
}

#count {
  transition: transform 0.1s;
}