body {
    background: linear-gradient(to bottom, #202020, #111119);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.searchContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    background: linear-gradient(to bottom right, rgb(233, 238, 240), rgb(200, 50, 50));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pokeInfo {
    display: flex;
    justify-content: center;
    align-items: center;
}

#pokemonName::first-letter {
    text-transform: capitalize;
}

#pokemonName {
    background: linear-gradient(to top left, rgb(233, 238, 240), rgb(200, 50, 50));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}