@font-face {
    font-family: pokemon;
    src: url('fonts/POKEMON.ttf');
}

body {
    box-sizing: border-box;
    width: 600px;
    height: 600px;
    display: flex;
    flex-wrap: wrap;
    font: 16px pokemon;
}

section {
    height: 300px;
    width: 300px;
}

.startGameSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.startGameButton {
    margin-top: 30px;
    border: solid 2px;
    border-radius: 8px;
    padding: 20px 25px;
}

.pokemon {
    width: 200px;
    height: 200px;
    float: right;
}

.hpContainer {
    margin-top: 10px;
    margin-left: 10px;
}

.barraHp{
    height: 15px;
    width: 100px;
    background-color: red;
    border-radius: 5px;
}

img {
    width: 150px;
}

.flip {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

#ataques {
    border: 2px solid;
    border-radius: 8px;
    padding: 10px;
    background-color: whitesmoke;
}

ul {
    list-style: none;
}

ul li {
    margin-bottom: 10px;
}

button {
    background: transparent;
    border: none;
    font: 14px pokemon;
}

button:hover {
    color: lightslategray;
}