@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    width: 100%;
    height: 100%;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    background: rgb(237, 223, 223);
}
header p{
    text-align: center;
    border-bottom: 2px solid;
    height: 3.5rem;

}

#container{
    width: 400px;
    max-height: 100vh;
    background: #fff;
    padding: .5rem 1rem;
    border-radius: 5px;
}

.search-pokemon img{
    width: 100%;
    margin-top: 1rem;

}

.search-pokemon label{
    color: rgb(77, 77, 185);
    margin-top: 30px;
    text-align: left;
}

.search-pokemon input{
    width: 100%;
    height: 40px;
    padding-left: .7rem;
    border-radius: 5px;
    border: none;
    background: rgb(214, 209, 209);

    
}

.search-pokemon input[type=submit] {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    background: rgb(44, 44, 197);
    color: #fff;
    border: none;
    font-size: 1rem;
    margin-top: .5rem;
    font-weight: bolder;
    text-transform: uppercase;

}

.result-pokemon {
    display: flex;
    flex-direction: column;
}



#pokemon-image {
    width: 100%;
    text-align: center;
    
}

#pokemon-image img{
    margin: 1rem;
    border: 1px solid #333;
    border-radius: 50%;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.5);
}


#pokemon-info{
    text-align: center;
    font-family: monospace;
    font-weight: normal;
    width: 100%;
    max-height: 100vh;
    background: #EFCC01;
    padding: 20px;
    margin-bottom: 1rem;
    border-radius: 5px;
    letter-spacing: .2rem;

}
