* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.pokeball {
    width: 100px;
    height: 100px;
    background-image: url('Pokeball.PNG');
    background-size: contain;
    background-position: center;
}

form {
    background-color: bisque;
    padding: 20px 0;
}

input, button {
    padding: 10px;
    border: none;
}

ul {
    padding: 0;
    list-style: none;
}

.pokemon {
    display: flex;
    margin-bottom: 5px;
}

button {
    background-color: aquamarine;

}