@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@300;400;500;600;700;800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  font-family: "Oxanium", cursive;
  text-transform: capitalize;
}
img {
  display: block;
  max-width: 100%;
}
body {
  height: 100vh;
  padding: 1%;
  background: linear-gradient(to right, #6ab7f5, #fff, #f53434);
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  place-content: center;
}
#container {
  margin: auto;
  max-width: 1200px;
  height: fit-content;
  position: relative;
}
@media (max-height: 800px) {
  #container {
    max-width: 800px;
  }
}
#tvBezel {
  width: 100vw;
}
#pokemonSprite {
  transform: translate(-5%, 0%);
  top: 25%;
  left: 14%;
  height: 43%;
}
#pokemonName > span > img {
  height: clamp(0.125rem, 0.5019rem + 0.5252vw, 1rem);
}
#pokemonName {
  top: 7%;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  #pokemonName {
    top: 7%;
  }
}
#pokemonType {
  top: 12.5%;
}
#pokemonHeight {
  top: 16.8%;
}
#pokemonWeight {
  top: 20.8%;
}
#pokemonSearch input {
  top: 25%;
  outline: none;
  border: none;
  max-width: 19%;
  font-size: clamp(0.25rem, 0.418rem + 0.6252vw, 1.375rem);
}
#pokemonSearch {
  width: fit-content;
  height: fit-content;
}
#randomField {
  top: 22.5%;
  left: 49%;
  width: 12%;
  height: 32%;
  cursor: pointer;
}
#volMSG {
  display: block;
  bottom: 8%;
  left: 8%;
  padding: 0.5%;
}
#randomMsg {
  top: -18%;
  right: -32%;
  padding: 10%;
}
#btnBefore {
  left: 77.8%;
  padding: 0.2% 4.5% 0.2% 1.5%;
}
#btnNext {
  left: 89.3%;
  padding: 0.2% 1.5% 0.2% 4.5%;
}
#btnNext:hover,
#btnBefore:hover {
  background-color: #757575;
  color: #080a0a;
  transition: 0.2s;
}
#btnNext:active,
#btnBefore:active {
  padding-top: 0.5%;
}
#btnNext:active {
  box-shadow: inset 3px 3px 0 #222;
}
#btnBefore:active {
  box-shadow: inset -3px 3px 0 #222;
}
.btnStyle {
  top: 81.5%;
  border-radius: 15%;
  font-size: clamp(0.625rem, 0.5019rem + 0.5252vw, 1.375rem);
  font-weight: 800;
  line-height: normal;
  cursor: pointer;
  color: white;
  background-color: #444;
  box-shadow: -2px 3px 0 #222, -4px 6px 0 #000;
}
.btnVol {
  position: absolute;
  color: white;
  bottom: 8%;
  left: 4%;
  font-size: clamp(0.8rem, 0.5222rem + 0.8889vw, 2rem);
}
.elementPositionAbsolute {
  position: absolute;
  left: 77.5%;
}
.fontsCommonStyles {
  font-size: clamp(0.25rem, 0.5019rem + 0.5252vw, 1.375rem);
  font-weight: 600;
  line-height: 0;
}
.hidden {
  display: none;
}
.hiddenMsgs {
  width: fit-content;
  text-align: center;
  border-radius: 10%;
  background-color: #3a5eac;
  color: #ffcb05;
  opacity: 0;
  line-height: 1;
}
.types {
  border-radius: 10%;
  padding: 1% 3%;
}
.bug {
  background: #6e9a3d;
  color: white;
}
.dark {
  background: #6f6f6f;
  color: white;
}
.dragon {
  background: linear-gradient(to bottom, #53a4cf 50%, #f16e57 50%);
  color: white;
}
.electric {
  background: #eed535;
  color: #222;
}
.fairy {
  background: #fdb9e9;
  color: #222;
}
.fighting {
  background: #cf6422;
  color: white;
}
.fire {
  background: #fd7d24;
  color: white;
}
.flying {
  background: linear-gradient(to bottom, #39bae0 50%, #bdb9b8 50%);
  color: white;
}
.ghost {
  background: #7a61a2;
  color: white;
}
.grass {
  background: #9bcc50;
  color: #222;
}
.ground {
  background: linear-gradient(to bottom, #f7de3f 50%, #ab9842 50%);
  color: #222;
}
.ice {
  background: #51c4e7;
  color: white;
}
.normal {
  background: #a0a9ac;
  color: white;
}
.poison {
  background: #ab75b9;
  color: white;
}
.psychic {
  background: #f366b9;
  color: white;
}
.rock {
  background: #a38c21;
  color: white;
}
.steel {
  background: #9eb7b8;
  color: #222;
}
.water {
  background: #448fc0;
  color: white;
}
