body{
    background: #f7ff00;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #db36a4, #f7ff00);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #db36a4, #f7ff00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
.pokedex{
    margin:20px auto;
    height: 600px;
    width:600px;
    background: red;
    border-radius: 30px;
    border: solid black 4px;
}
.upper{
    height: 80px;
    width: 600px;
    border-bottom: 4px solid black;
    display: flex;
    gap:20px;
    align-items: center;
}
.red,.yellow,.green{
    border-radius: 30px;
    height: 40px;
    width:40px;
    border: 2px solid black;
}
.red{
    background-color: red;
}
.yellow{
    background-color: yellow;
}
.green{
    background-color: green;
}
.imgs{
    height:200px;
    width:200px;
    background-color:#b0e7ac;
    margin:30px auto;
}

.sprite{
    display: flex;
    height:200px;
    width: 200px;
}
.content{
    box-sizing: border-box;
}
.content2{
    display: flex;
    gap:100px;
}