body {
  background-color: #ffffff;
  margin: 0;
  font-family: monospace;
}

#loadingScreen {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: #171B1E;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

main {
  display: flex;
}

#pokemonDisplay, #pokemonSelector {
  height: 100vh;
}

#pokemonSelector {
  /*flex-basis: 65%;*/
  background-color: #96D9D6;
  overflow: hidden;
}

#pokemonDisplay {
  flex-basis: 35%;
  /*background-color: #F9D92E;*/
  overflow: hidden;
}

#selectorMain {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  height: 100%;
  overflow-y: scroll;
  padding-right: 17px;
  box-sizing: content-box;
}

#displayMain {
  width: calc(100% + 30px);
  height: 100%;
  overflow-y: scroll;
  padding-right: 17px;
  box-sizing: content-box;
  display: inline-block;
}

.pokeBox {
  /*width: calc(65vw / 6);
  height: calc(65vw / 6);*/
  width: calc(100vw / 9);
  height: calc(100vw / 9);
  cursor: pointer;
}

.pokeBox > div {
  border-radius: 10px;
  margin: 5%;
  width: 90%;
  height: 90%;
  background-position: center;
  background-size: 7vw;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  font-size: 1.5vw;
  font-weight: bold;
}

.pokeBox > div > div:nth-child(1) {
  padding-top: 1px;
}

.pokeBox > div > div:nth-child(2) {
  padding-bottom: 5px;
  cursor: auto;
}

.pokeInfo {
  border-radius: 10px;
  margin: 5%;
  width: calc(90% - 35px);
  min-height: 90%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  font-size: 2vw;
  font-weight: bold;
}

#loader {
  width: 400px;
  height: 30px;
  border-color: white;
  border-width: 1px;
  border-style: solid;
}

#loader > div {
  height: 100%;
  background-color: white;
  width: 0;
}

#loaderInfo {
  font-size: 15pt;
  color: white;
  font-weight: bold;
}

.infoSprite {
  height: 150px;
  width: 150px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: auto;
  margin-right: auto;
}
