::-webkit-scrollbar{
  display: none;
}

body{
  text-align: center; 
  background-image: url("images/background.png");
  height: 100vh;
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  min-height: 100vh;
}

#home{
  color: #fff;
}

.infoText{
  color: white;
  font-size: 150%;
}

.infoPage{
  font-size: 150%;
}

p{
  color: white;
  font-size: 120%;
}

.grid-container {
  display: grid;
  grid-template-areas:
  'header header header'
  'stats image upgrades'
  'pokeInfoText pokeInfoText multipliers';
}

.grid-container > div {
  text-align: center;
}

.header{
  grid-area: header; 
}

.image{
  grid-area: image;
}

#play{
  display: inline-block;
  padding: 15px 25px;
  font-size: 24px;
  width: 75vw;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #ff6600;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}
#play:hover{
  background-color:#8E1600;
  color: white;
}

#info{
  display: inline-block;
  padding: 15px 25px;
  font-size: 24px;
  width: 60vw;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #ff6600;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}
#info:hover{
  background-color:#8E1600;
  color: white;
}

h1{
  color: white;
  text-shadow: 2px 2px 5px black;
  font-size: 60px;
}

#lvlUpText{
  position: absolute;
  top: 32%;
  right: 48%;
  font-family: fantasy;
}

.eeveeImg{
  position: relative;
  bottom: 60px;
}
.eeveeImg:active{
  transform: translateY(8px);
}

.upgrades{
  float: right;
  width: 20vw;
  height: 10vw;
  position: absolute;
  top: 30%;
  right: 5%;
  grid-area: buttons;
}
.upgrades .btn{
  display: block;
  background: #666;
  border-color: black;
  width: 20vw;
  font-size: auto;
  font-family: fantasy;
  letter-spacing: .5px;
  color: #fff;
  transition-duration: 0.4s;
}

.pokeInfoText{
  background-color: #666;
  bottom: 10%;
  grid-area: stats;
  position: relative;
  bottom: 7vh;
  z-index: -1;
}

.upgrades .btn .im{
 padding-right: 5px
}

.btn:hover{
  background-color:black;
  color: white;
}

.multipliers{
  float: right;
  position: absolute;
  width: 20vw;
  bottom: 7vh;
  right: 5%;
  grid-area: multipliers; 
}

.multipliers .btn2{
  background: #666;
  border-color: black;
  display: block;
  width: 20vw;
  font-size: auto;
  font-family: fantasy;
  letter-spacing: .5px;
  color: #fff;
  transition-duration: 0.4s;
}

.btn2:hover{
  background-color:black;
  color: white;
}

.stats{
  display: flex;
  width: 10vw;
  font-size: 160%;
  float: right;
  position: absolute;
  top: 27%;
  left: 5%;
  padding: 10px;
  display: block;
  grid-area: stats;
}

*, *::before, *::after{
box-sizing: border-box;
}
.exp-bar{
position: absolute;
width: 40%;
height: 3em;
background-color:grey;
border-radius: 1.5em;
color: white;
font-family: fantasy;
top: 25%;
right: 30%;
}
.exp-bar::before{
  content: attr(data-label);
  display: flex;
  align-items: center;
  position: absolute;
left: .5em;
top: .5em;
bottom: .5em;
width: calc(var(--width, 0) * 1%);
min-width: 0rem;
max-width: calc(100% - 1em);
background-color: #069;
border-radius: 1em;
padding: 1em;
}