*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    display:flex;
    justify-content:center;
    flex-direction: column;
    align-items:center;
    background:rgb(253, 253, 253);
}
#container{
    width:90%;
    flex-wrap: wrap;
    display:flex;
    justify-content:center;
}

h1{
    margin:10px;
    margin-top:40px;
    padding:20px;
    background-color:rgb(231, 68, 68);
    color:white;
    border-radius: 10px;
}

.pokemon{
    width:250px;
    display:flex;
    flex-direction: column;
    margin:30px;
    padding:50px;
    background-color: rgb(169, 169, 230);
    border-radius: 20px;
    
}
.pokemon h2{
    text-align: center;
}
.pokemon ul{
    padding:20px
}

.pokemon ul li{
    list-style-type: none;
}
