:root {
  --light-green: #acffa1; /*Mint Green*/
  --dark-green: #002800; /*Dark Green*/
  --lighter-green: #d0efcb; /*Tea Green*/
  --grey: #666; /*Granite Gray*/
  --brown: #6a3e2d; /*Van Dyke Brown*/
  --lightBrown: #c4ad8d;
  --ph-color: black; /*to be changed in js*/
  --padding-top: 2%; /*to be changed in js*/
  font-family: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

/* makes it so height can be used for elements later on */
html {
  height: 100%;
}

body {
  display: inline-block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--light-green);
}

/* centers all images */
img {
  position: relative;
  margin: auto;
}

/*removes link underlines thoroughly*/
a:link {
  text-decoration: none !important;
}
a:hover {
  text-decoration: none !important;
}
a:active {
  text-decoration: none !important;
}
a:visited {
  text-decoration: none !important;
}

.hidden {
  display: none !important;
  border: none !important;
}

p.coinText {
  display: inline-block;
  font-size: 20px;
  margin: 0;
}

p.dark-green {
  color: var(--dark-green);
}

.costImg {
  height: 25px;
  display: inline-block;
  margin: 0;
  position: relative;
  top: 4px;
}

.cost {
  margin: 5px auto;
}

.price {
  margin: 0 auto;
}


#mainMenu {
  position: fixed;
  display: flex;
  flex-direction: column;
  z-index: 8;
  right: -50%;
  top: 5%;
  transition: right 1s;
  width: 25%;
  border: 1px solid black;
}

#mainMenu.show {
  right: 0;
}

#menuOpen {
  position: absolute;
  top: 4px;
  right: 4px;
  margin: 11px;
  margin-bottom: 0;
  padding: 0;
  float: right;
  border: none;
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 30px;
  background: inherit;
  align-content: space-between;
  justify-content: space-evenly;
  z-index: 2;
}

.menuDash {
  width: 100%;
  height: 10%;
  background: var(--grey);
}

.mainMenuBtn {
  background: lightgrey;
  padding: .5em;
  font-size: 1.2em;
  border: 2px solid black;
  color: #000;
  text-transform: uppercase;
  opacity: 0.6;
}

.mainMenuBtn:hover {
  opacity: 1;
}

/*for a fade out effect between levels*/
#transition {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  background: #000;
  opacity: 0; 
  transition: none;
  z-index: 0;
  transition-timing-function: linear;
}

#transition.faded {
  transition: opacity 1s;
  z-index: 5;
  opacity: 0.5;
}

#transition.on {
  z-index: 7;
  opacity: 1;
}