/* 
//                                                    | |       | |       (_)      
//                                                  __| |  ___  | |_  ___  _   ___ 
//                                                 / _` | / _ \ | __|/ __|| | / __|
//                                              _ | (_| || (_) || |_ \__ \| || (__ 
//                                             (_) \__,_| \___/  \__||___/|_| \___|
*/

@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Oxanium', cursive;
}

body {
  text-align: center;
  background: linear-gradient(to bottom, #095089, #181b1c);
  min-height: 100vh;
}

main {
  display: inline-block;
  margin-top: 2%;
  padding: 15px;
  position: relative;
}

.pokedex {
  width: 100%;
  max-width: 425px;
}

.pokemon__img {
  position: absolute;
  bottom: 55%;
  left: 50%;
  transform: translate(-63%, 20%);
  height: 18%;
  opacity: 90%;
}

.pokemon__data {
  position: absolute;
  font-weight: 600;
  color: #444444;
  top: 55.5%;
  right: 31%;
  font-size: clamp(8px, 5vw, 25px);
  
}

.pokemon__name {
  color: #151515;
  text-transform: capitalize;
}

.form {
  position: absolute;
  width: 65%;
  top: 68%;
  left: 13.5%;
}

.input__search {
  width: 85%;
  padding: 4%;
  outline: none;
  border: 2px solid #333;
  border-radius: 5px;
  font-weight: 600;
  color: #3a444d;
  font-size: clamp(8px, 5vw, 1rem);
  box-shadow: -3px 4px 0 #888, -5px 7px 0 #333
}

.buttons {
  position: absolute;
  bottom: 13%;
  left: 50%;
  width: 55%;
  transform: translate(-57%, 0);
  display: flex;
  gap: 20px;
}

.button {
  width: 50%;
  padding: 4%;
  border: 2px solid #000;
  border-radius: 5px;
  font-size: clamp(8px, 5vw, 1rem);
  font-weight: 600;
  color: white;
  background-color: #444;
  box-shadow: -2px 3px 0 #222, -4px 6px 0 #000;
}

.btn-shiny {
  position: absolute;
  width: 5%;
  height: 5%;
  padding: 4%;
  border: 2px solid #000;
  border-radius: 50%;
  font-size: clamp(8px, 5vw, 1rem);
  font-weight: 600;
  color: white;
  background-color: #444;
  box-shadow: -2px 3px 0 #222, -2px 6px 0 #000;  
  bottom: 80%;
  left: 68%;
  transform: translateX(-50%);
  display: flex;
}

.btn-shiny:active {

  box-shadow: inset -4px 4px 0 #222;
  font-size: 0.9rem;


}


.button:active {
  box-shadow: inset -4px 4px 0 #222;
  font-size: 0.9rem;
}
