@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(#3d9ceb,white);
    min-height: 100vh;
}
.box{
    display: inline-block;
    padding: 15px;
    position: relative;
}

.Nombre{
    color: #3a444d;
}
.pokedex{
    width: 100%;
    max-width: 425px;
}
.caja{
  width: 100%;
  max-width: 425px;
}

.Pokemon{
    position: absolute;
    bottom: 55%;
    left: 50%;
    transform: translate(-63%,20%);
    height: 18%;
    
}

.pokemon_data{
    position: absolute;
    font-weight:600; 
    color: #aaa;
    top: 54.5%;
    right: 27%;
    font-size: clamp(8px,5vw,25px);
}

.pokemon_name{
    color: #3a444d;
    
}
.formulario{
    position: absolute;
    width: 65%;
    top: 65%;
    left: 13.5%;
}

#busqueda{
    width: 100%;
    padding: 4%;
    border: 2px solid #333;
    border-radius: 5px;
    font-weight: 600;
    color: #3a444d;
    font-size: 2.2vw;
}
.botones{
    position: absolute;
    top:20%;
    bottom: 13vh;
    left: 31vw;
    width: 33vw;
    display: flex;
    gap: 20px;
    height:5vw;
}
#previo, #siguiente {
    width: 50%;
    padding: 4%;
    border: 2px solid #000;
    font-size:1.9vw;
    font-weight: 600;
    color: white;
    background-color: #444;

  }
  .Nombre{
    text-transform: capitalize;
  }