body {
	text-align: center;
	background: url(istockphoto-1333010525-612x612.jpeg) no-repeat center center fixed;
	background-size: cover
}
#cookie-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}
h1 {
	width: 650px;
	height: 60px;
	font-size: 60px;
	border: 10px solid black;
	text-align: center;
	margin: auto;
	position: relative;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	color:black;
	
}
#cookie {
	position: relative;
	transition: transform 0.3s ease;
	
  }
  #cookie.active {
	transform: scale(1.1);
  }
  #cookie::before {
	content: "";
	display: block;
	width: 400px; /* width of the cookie image */
	height: 400px; /* height of the cookie image */
	position: absolute;
	top: 0;
	left: 0;
	 /* path to your cookie image */
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
	box-shadow:  0 0 200px 10px white;
	border-radius: 80%;
	
  }
  
  #clickable-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -45px; /* adjust the negative margin to vertically center the circle */
  width: 400px; /* diameter of the circle */
  height: 400px; /* diameter of the circle */
  border-radius: 50%; /* makes the div circular */
  opacity: 0; /* makes the div invisible */
  cursor: pointer; /* shows the cursor as a pointer on hover */
  touch-action: manipulation; 
  }
  
#counter {
	margin-top: 20px;
	font-size: 24px;
	color:black;
}
#score {
	font-size: 50px;
	color:black;
}

#upgrades-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#upgradeList {
	border: 2px solid black;
	background-image: url(wood.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 0px 10px 10px 10px;
	list-style-type: none;
	font-size: 18px;
	color: white;
	width: 320px;
	height: 320px;
	text-align: center;
	margin: 0 auto;
}
#upgradeList button{
	background-color: white;
	font-size:  16px;
	font-weight: bold;
	
}
#upgradeList button:hover {
	background-color: #bbb;
}
#helperList button:hover{
	background-color: #bbb;
	
}
#upgradeList button {
	width: 50px;
	height: 50px;
	color:black;
	
}
#upgradeList #close-button {
	width:40px;
	height: 20px;
	float:right;
	color:black;
	
}
#upgradeList #close-button button {
	font:bold;
	font-size: 3px;
	color:black;
}

    #helper-button {
	color:black;
	font-weight: bold;
	padding: 10px;
	position: fixed;
	transform: translateX(-460%);
	background-color: white;
	border-color: black;
	border-width: 5px;
	border-top-width: 1;
	border-bottom-left-radius: 20px; /* Ensure the button appears above the h1 border */
}

#upgrade-button {
	color:black;
	font-weight: bold;
	padding: 10px;
	position: fixed;
	transform: translateX(-320%);
	background-color: white;
	border-color: black;
	border-width: 5px;
	border-top-width: 1;
	border-bottom-right-radius: 20px;
} 
#settings-button {
	color:black;
	font-weight: bold;
	padding: 10px;
	position: fixed;
	transform: translateX(338%);
	background-color: white;
	border-color: black;
	border-width: 5px;
	border-top-width: 1;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
}
#helper-button:hover, #upgrade-button:hover,#settings-button:hover {
	background-color: lightgrey;
}
#helper-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
}
#helperList {
	border: 2px solid black;
	background-image: url(wood.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 0px 10px 10px 10px;
	list-style-type: none;
	font-size: 18px;
	color: white;
	width: 320px;
	height: 320px;
	text-align: center;
	margin: 0 auto;
	color:black;
}

#helperList button {
	width: 300px;
	height: 50px;
	background-color: white;
	font-size:  20px;
	font-weight: bold;
	color:black;
	
}


#helperList #close-button {
	width:40px;
	height: 20px;
	font-size:16px;
	float:right;
	color:black;
}
#helperList #close-button button {
	font:bold;
	font-size: 3px;
	color:black;
}
.game-container {
	position: relative;
}

/* add scollbar to the list*/
nav ul{overflow:hidden; overflow-y:scroll;}

.tooltip {
	position: relative;
  }
  
  .tooltip::after {
  content: attr(data-tooltip);
  position: fixed;
  top: 18px;
  right: 100%;
  transform: translate(-10px, -50%);
  padding: 5px;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  }
  
  .tooltip:hover::after {
	opacity: 1;
	visibility: visible;
  }

  #reset-button {
	font-size: 12px;
	margin-top: 20px;
	color:black;
}
#moonWorldButton {
	font-size: 12px;
	color:black;
}




.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

  