@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-VariableFont_wdth_wght.ttf") format("truetype") tech("variations"), url("../fonts/OpenSans-VariableFont_wdth_wght.ttf") format("truetype-variations"), url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 300 800;
  font-stretch: 75% 100%;
}
@font-face {
  font-family: "TangoSans";
  src: url("../fonts/TangoSans.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
p, a, ul, ol, li, td, label, input {
  font-family: "OpenSans";
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "TangoSans";
  font-weight: 400;
}

html, body {
  background-image: linear-gradient(45deg, #000, #444);
  margin: 0px;
  padding: 0px;
  font-size: 62.5%;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0px;
  padding: 5px;
}

h1, h2, h3, h4, h5, h6 {
  color: white;
}

p, a, ul, ol, li, td, label, input {
  font-size: 1.7rem;
  color: white;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

hr {
  margin: 0.5rem;
  width: -webkit-fill-available;
  width: -moz-available;
  border: none;
  height: 1px;
  background-color: #aaa;
}

.flex {
  display: flex;
}

.flexCol {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
}

.pkmTypeBlock {
  width: 70px;
  margin: 5px 5px 5px 0px;
  font-size: 1.4rem;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 0px 4px black;
  border: 1px solid black;
  border-radius: 4px;
}
.pkmTypeBlock.last {
  margin-right: 0px;
}

.generatesTooltip {
  position: relative;
  cursor: pointer;
  /*@at-root {
  	p.generatesTooltip, h1.generatesTooltip, h2.generatesTooltip, h3.generatesTooltip, h4.generatesTooltip, h5.generatesTooltip, h6.generatesTooltip {
  		border-bottom: 2px dashed #ccc;
  	}

  	div.generatesTooltip {
  		> p {
  			border-bottom: 2px dashed #ccc;
  		}
  	}
  }*/
}

.tooltip {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background-color: #333;
  border: 2px solid #888;
  border-radius: 10px;
}
.tooltip p {
  font-size: 1.5rem;
  color: white !important;
  text-align: center;
  white-space: pre-wrap;
  margin: 0px !important;
  padding: 5px !important;
}