@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;500;900&family=Shadows+Into+Light&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html,body{
    height: 100%;
    width: 100%;
}
body{
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: poppins;
}
h1{
    font-size: 20px;
    text-align: center;
}
hr{
    margin: 10px 0;
    border-top: 3px solid #BBB;
    border-radius: 5px;
}
strong{
    color: rgba(156, 21, 21, 0.815);
}
.conteiner{
    border: 1px solid black;
    border-radius: 10px;
    padding: 20px;
    max-width: 450px;
    min-height: 300px;
}
.imagen,#pokemon{
    text-align: center;
}
.imagen img{
    width: 90%;
}
.formulario{
    padding: 5px 0;
}
.formulario label{
    font-weight: 900;
    color: rgb(43, 43, 172);
}
.formulario input{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-family: pappins;
    text-transform: uppercase;
    border-radius: 5px;
    margin: 5px;
}
.formulario input[type=submit]{
    background-color: rgb(90, 90, 218);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 1px;
    color: white;
    cursor: pointer;
}
#pokemon img {
    width: 90px;
    border: 1px solid #333;
    border-radius: 50%;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.24);
    margin: 10px;
}
#content{
    font-family: monospace;
    padding: 10px;
    background: yellow;
    border: 1px solid;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
    color: #333;
}