*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    background-color: #d5cfcf;
}

.container{
    width: 350px;
    overflow: hidden;
    margin-left:39%;
    margin-top: 50px;
}
 
.container img{
    width: 100%;
    height: 100%;
    object-fit: cover;    
}

#card{
    position: relative;
    border: 1px solid black;
    background: radial-gradient(circle at 50% 0%, yellow 36%, white 36%);
    width: 100%;
    padding: 30px 20px;
    box-shadow: 0 20px 30px rgb(0, 0, 0, 0.15);
    border-radius: 10px;
}

#btn{
    display: block;
    padding: 15px 60px;
    font-size: 18px;
    background-color: #121212;
    color: #fff;
    position: relative;
    margin: 30px auto;
    border: none;
    border-radius: 5px;
}

#card img{
    display: block;
    width: 200px;
    max-height: 200px;
    margin: 20px auto;
    position: relative;
}

.hp{
    width: 80px;
    background-color: #e0d3d3;
    text-align: center;
    padding: 8px 0;
    border-radius: 30px;
}

.poke-name{
    text-align: center;
    font-weight: 600;
}

.types{
    display: flex;
    justify-content: space-around;
    margin: 20px 0 40px 0;
}

.hp span,
.types span{
    font-size: 20px;
    letter-spacing: 0.4px;
    font-weight: 600;
    text-transform: capitalize;
}

.stats{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.stats p {
    color: rgb(97, 99, 99);
}

header {
    text-align: center;
}



p {
    font-size: 1.2rem;
    margin-top: 5px;
    text-align: center;
}
