@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Oxanium", sans-serif;
}

.container{
    background: linear-gradient(to bottom, rgba(0, 255, 255, 0.753), white);
    text-align: center;
}

.pokedex-container {
    max-width: 1100px;
    display: inline-block;
    position: relative;
}

.pokedex {
    display: inline-block;
}

.pokedex img {
    width: 100%;
    object-fit: cover;
}

.pokemon-img {
    position: absolute;
    width: 25%;
    left: 40%;
    bottom: 45%;
}

.pokedex-container p {
    font-size: 150%;
    font-weight: 600;
    position: absolute;
    bottom: 33%;
    right: 21%;
    color: #58595b;
}
.pokedex-container input {
    width: 50%;
    height: 5%;
    border: 2px solid #231f20;
    border-radius: 4px;
    position: absolute;
    background-color: whitesmoke;
    padding: 4px 8px;
    left: 30%;
    bottom: 20%;
    box-shadow: -5px 5px 0 0 #231f20;
}

.pokedex-container input:focus {
    outline: none;
}

.container-button {
    position: absolute;
    bottom: 13%;
    left: 20%;
    width: 60%;
    height: 5.5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6%;
}


.container-button button {
    height: 100%;
    border: 2px solid #231f20;
    border-radius: 4px;
    box-shadow: -5px 5px 0 0 #231f20;
    background-color: #58595b;
    padding: 4px 8px;
    font-weight: 700;
    color: #f1f2f2;
    cursor: pointer;
}
